How the case converter works
Each conversion mode applies a different text transformation: uppercase/lowercase change every letter's case, Title Case capitalizes the first letter of each word, Sentence case capitalizes only the first letter of each sentence, and camelCase joins words together with each word (after the first) capitalized and spaces removed.
Step-by-step guide
- Type or paste your text into the box.
- Choose a case format from the buttons.
- Copy the converted result instantly.
Common uses
- Formatting headlines or titles consistently
- Cleaning up text pasted from all-caps sources
- Converting text into a programming-friendly camelCase variable name
Frequently asked questions
camelCase is a common naming convention in programming for variables and function names, where the first word is lowercase and each subsequent word starts with a capital letter, with no spaces.
It capitalizes the first letter after sentence-ending punctuation (. ! ?), which works well for standard prose but may need manual adjustment around abbreviations or unusual punctuation.