Text Case Converter
Convert between camelCase, snake_case, PascalCase, etc.
Input Text
Enter text to convert to different cases
UPPERCASE
ALL LETTERS CAPITALIZED
Output will appear here
lowercase
all letters lowercase
Output will appear here
Title Case
First Letter Of Each Word
Output will appear here
Sentence case
First letter of each sentence
Output will appear here
camelCase
firstWordLowercaseRestCapitalized
Output will appear here
PascalCase
AllWordsCapitalized
Output will appear here
snake_case
words_separated_by_underscores
Output will appear here
kebab-case
words-separated-by-hyphens
Output will appear here
Case Conversion Guide
Text Cases:
- UPPERCASE: All caps
- lowercase: All lowercase
- Title Case: Each word capitalized
- Sentence case: First letter of sentences
Programming Cases:
- camelCase: JavaScript variables
- PascalCase: Class names
- snake_case: Python, Ruby
- kebab-case: URLs, CSS classes
Common Use Cases
- Converting variable names between programming languages
- Formatting text for documentation and content
- Preparing data for databases and APIs
- Standardizing naming conventions in codebases
- Creating URLs and file names from titles