Home / Text Case Converter
Text Case Converter
Paste your text, pick a case, done. Useful for headlines, code identifiers, social captions or cleaning up text that's stuck in ALL CAPS.
What each case does
UPPERCASE: every letter capitalised
lowercase: every letter lowercase
Title Case: first letter of every word capitalised
Sentence case: first letter of each sentence capitalised, rest lowercase
aLtErNaTiNg cAsE: letters alternate upper and lower, mocking-text style
camelCase: words joined with no spaces, each word after the first capitalised — common in programming
snake_case: words joined with underscores, all lowercase — also common in programming
Frequently asked questions
- What's the difference between Title Case and Sentence case?
- Title Case capitalises the first letter of every word — the style used for headlines and titles. Sentence case only capitalises the first letter of each sentence, the way normal prose is written.
- Is my text saved anywhere?
- No — every conversion happens locally in your browser using JavaScript. Nothing you type is sent to a server or stored.
- Does camelCase or snake_case strip punctuation?
- Yes — both are built for identifiers, so anything that isn't a letter, number or space is removed before the words are joined.