Case Converter
Convert text between different cases: uppercase, lowercase, title case, camelCase, snake_case, and more.
Characters: 0 | Words: 0
- Convert to UPPERCASE, lowercase, Title Case, and Sentence case
- Programming cases: camelCase, PascalCase, snake_case, kebab-case, CONSTANT_CASE
- Real-time character and word count
- One-click copy to clipboard
- Preserves text structure where appropriate
- Paste or type your text in the input field
- Click any conversion button to transform the text
- The converted text appears in the output field
- Click "Copy" to copy the result to clipboard
- Use different case styles for various programming and writing needs
camelCase starts with a lowercase letter (e.g., myVariableName), while PascalCase starts with an uppercase letter (e.g., MyClassName). Both use no spaces and capitalize each new word.
snake_case (underscores) is common in Python, Ruby, and database names. kebab-case (hyphens) is popular in URLs, CSS classes, and file names where underscores might not be ideal.