Text Case Converter
Paste your text once and get it converted into every common case style at the same time — pick whichever one you need and copy it.
Your text
What each case style is for
UPPERCASE and lowercase are self-explanatory; Title Case capitalizes each major word and is standard for headlines; Sentence case only capitalizes the first letter of each sentence, matching normal prose. camelCase and PascalCase are programming conventions for variable and class names (no spaces, capitalized word boundaries), and snake_case and kebab-case are common for file names, URLs, and database fields.
This tool capitalizes every word for simplicity and predictability. Some style guides lowercase short articles and prepositions in titles — if you need that specific style, you may need to manually adjust a couple of words after copying.
camelCase starts with a lowercase letter (myVariableName); PascalCase starts with an uppercase letter (MyClassName). Both remove spaces and capitalize subsequent word boundaries.