Text Case Converter
Convert text between different cases
How to Use Text Case Converter
- 1Paste or type your text into the input area.
- 2Select the target case format from the buttons below.
- 3The converted result appears instantly.
- 4Click Copy to copy the result to your clipboard.
About Text Case Converter
Convert text between 10 different cases online: lowercase, UPPERCASE, Title Case, Sentence case, camelCase, PascalCase, snake_case, kebab-case, CONSTANT_CASE and dot.case. Useful for developers converting variable names, writers formatting text, and anyone who needs quick case conversion.
Frequently Asked Questions
What is camelCase?
camelCase is a naming convention where the first word is lowercase and each subsequent word starts with a capital letter, with no separators. Example: myVariableName. It is widely used in JavaScript and Java.
What is the difference between snake_case and kebab-case?
snake_case uses underscores between words (my_variable_name) and is common in Python and Ruby. kebab-case uses hyphens (my-variable-name) and is common in CSS and URL slugs.
Can I convert code variable names?
Yes. The converter correctly splits camelCase, PascalCase, snake_case and kebab-case inputs into words before converting to the target format.