What is the Case Converter?
Formatting text case manually—whether fixing someone’s ALL CAPS email, formatting variable names for your code, or creating standardized database keys—is a slow and painful process.
The Case Converter instantly transforms your text into exactly the format you need. It supports standard grammatical cases as well as standard programming conventions.
Supported Cases
- lowercase: converts all letters to small letters.
- UPPERCASE: CONVERTS ALL LETTERS TO CAPITAL LETTERS.
- Title Case: Capitalizes The First Letter Of Every Word.
- Sentence case: Capitalizes the first letter of sentences.
- camelCase: combinesWordsWithoutSpaces starting with a lowercase.
- PascalCase: CombinesWordsWithoutSpaces starting with an uppercase.
- snake_case: words_separated_by_underscores.
- kebab-case: words-separated-by-dashes.
- CONSTANT_CASE: ALL_UPPERCASE_SEPARATED_BY_UNDERSCORES.