Case Converter
Switch text between any case in one click.
Which case should you use?
- UPPERCASE / lowercase — for emphasis, or to normalise messy text.
- Title Case — headlines and titles: capitalise each word.
- Sentence case — normal prose: capitalise the first letter of each sentence.
- camelCase and snake_case and kebab-case — naming variables, files and URLs in code.
Everything runs in your browser. Need to measure the result? Try the word counter.
Case converter FAQ
What is Title Case?
Title Case capitalises the first letter of each word, as used in headlines and titles.
What is camelCase and snake_case?
camelCase joins words with no spaces and capitalises each word after the first (myVariableName). snake_case joins words in lowercase with underscores (my_variable_name). Both are common in programming.
Recently used