Case Converter
Convert text between twelve letter cases — from plain uppercase to camelCase and kebab-case for code.
How to use the Case Converter
- 1Paste your text.
- 2Click the case you want; the result appears immediately.
- 3Keep clicking to try others — the original is preserved so nothing is lost.
- 4Copy the result or download it.
How it works
The prose cases are straightforward, except title case. Proper title case does not capitalise every word: short articles, conjunctions and prepositions stay lowercase unless they are the first or last word. The tool follows that convention using a standard list of minor words, so you get 'The Rise and Fall of the House' rather than 'The Rise And Fall Of The House'.
The programming cases first split the input into words, handling spaces, hyphens, underscores and existing camelCase boundaries, then rejoin them in the target style. That means camelCase input converts cleanly to snake_case and back without losing word boundaries.
Sentence case capitalises after each sentence-ending punctuation mark and lowercases the rest, which is the fastest way to fix text that arrived in all capitals.
Your text is processed by JavaScript running in this page and is never sent over the network. That matters when you are pasting a draft, a client brief, meeting notes or anything else you would rather not hand to a server.