Loading...

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
  1. Paste or type your text in the input field
  2. Click any conversion button to transform the text
  3. The converted text appears in the output field
  4. Click "Copy" to copy the result to clipboard
  5. 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.