Case Converter
Convert text to uppercase, Title Case, camelCase, and more.
Paste or type the text you want to transform into the input textarea.
Click one of the conversion buttons: UPPERCASE, lowercase, Title Case, Sentence case, camelCase, PascalCase, snake_case, or kebab-case.
The transformed text appears in a read-only textarea so you can review it and copy it with one click.
Frequently asked questions
What is Title Case logic?
Every word is capitalized except small words like a, an, the, and, but, or, of, in, on, at, to, and for unless they are the first or last word.
Does it preserve punctuation?
Spaces and punctuation remain mostly unchanged. camelCase, PascalCase, snake_case, and kebab-case remove spaces and join or separate words with the chosen delimiter.
Can I convert text into code identifiers?
Yes. camelCase and PascalCase produce JavaScript-style identifiers, while snake_case and kebab-case are common in Python and URL slugs.