What is Capitalized Case?
Capitalized Case (sometimes called "Start Case" or "Initial Caps") capitalizes the first letter of every word in the input. Unlike title case, it doesn't make exceptions for articles, conjunctions, or short prepositions.
It's a simpler, more mechanical version of title case. Useful when you need consistent first-letter capitalization without the complexity of style-guide rules.
When to use Capitalized Case
- Name fields in forms and databases — normalizing "john smith" to "John Smith."
- Quick, mechanical title-casing when style-guide rules don't matter.
- Display strings in spreadsheets and exports.
- Place names and proper nouns — capitalize each word like "New York City."
- Menu labels in software where consistency matters more than literary style.
How Capitalized Case conversion works
- The input is converted to lowercase first.
- The first letter of each word (where "word" means a run of letters bounded by whitespace, hyphens, or other separators) is capitalized.
- No exceptions for articles, conjunctions, or prepositions — every word gets its first letter capitalized.
Worked examples
| Input | Capitalized Case |
|---|---|
the quick brown fox |
The Quick Brown Fox |
with great power comes responsibility |
With Great Power Comes Responsibility |
a tale of two cities |
A Tale Of Two Cities |
Related case formats
Title Case
→ Convert text to Title Case
PascalCase→ Convert text to PascalCase
Sentence case→ Convert text to Sentence case
Need more conversion options?
Open the full converter →