How Does It Work?
- Paste your textA word, a sentence or a whole document — the conversion is instant either way.
- Pick a caseEight formats, from plain uppercase to the naming styles used in code.
- Copy it outOr send the result back into the input box to apply another format on top.
What Is It Used For?
Rescuing a paragraph typed with caps lock on used to mean retyping it. Beyond that, systems are fussy: spreadsheets want consistent capitalisation, style guides want title case, and code wants camelCase, snake_case or kebab-case depending on the language.
- Fixing text accidentally typed in all capitals.
- Formatting a headline in proper title case.
- Normalising imported data so names and cities are capitalised consistently.
- Converting a label into a variable name, a database column or a URL slug.
- Preparing text for a system that only accepts lowercase.
Examples
| Input | Format | Output |
|---|---|---|
| hello world | UPPERCASE | HELLO WORLD |
| HELLO WORLD | lowercase | hello world |
| the art of the deal | Title Case | The Art of the Deal |
| hello world. bye now | Sentence case | Hello world. Bye now |
| user first name | camelCase | userFirstName |
| User First Name | kebab-case | user-first-name |