Case Converter
Convert text between UPPERCASE, lowercase, Title Case, Sentence case, camelCase, PascalCase, snake_case, and kebab-case.
UPPERCASE
THE QUICK BROWN FOX JUMPS OVER THE LAZY DOG
lowercase
the quick brown fox jumps over the lazy dog
Title Case
The Quick Brown Fox Jumps Over The Lazy Dog
Sentence case
The quick brown fox jumps over the lazy dog
camelCase
theQuickBrownFoxJumpsOverTheLazyDog
PascalCase
TheQuickBrownFoxJumpsOverTheLazyDog
snake_case
the_quick_brown_fox_jumps_over_the_lazy_dog
kebab-case
the-quick-brown-fox-jumps-over-the-lazy-dog
dot.case
the.quick.brown.fox.jumps.over.the.lazy.dog
CONSTANT_CASE
THE_QUICK_BROWN_FOX_JUMPS_OVER_THE_LAZY_DOG
About Case Converter
What is a Case Converter?
A case converter is a text formatting tool that instantly transforms the capitalization of your text. Instead of manually retyping a paragraph because you accidentally left Caps Lock on, you can paste it into the converter and change it to lowercase or sentence case with one click.
Supported Formats
- UPPERCASE: CONVERTS ALL LETTERS TO CAPITALS.
- lowercase: converts all letters to small letters.
- Title Case: Capitalizes The First Letter Of Every Word.
- Sentence case: Capitalizes only the first letter of the first word in a sentence.
Programming Cases
Developers frequently use specific naming conventions for variables and functions. Our tool supports:
- camelCase:
myVariableName
- PascalCase:
MyClassName
- snakecase:
mydatabase_field
- kebab-case:
my-css-class
Frequently Asked Questions
What is camelCase?
camelCase is a naming convention used in programming where the first letter of each word is capitalized except for the first word, with no spaces between them (e.g., myVariableName).
Can I convert a whole document at once?
Yes, you can paste large blocks of text and instantly convert all of it to your desired case format. The tool handles line breaks and paragraphs automatically.