Case Converter

Convert text between different cases instantly. Perfect for developers, writers, and anyone who needs to quickly change text formatting.

0 characters 0 without spaces 0 words

Converted Results

Sentence case

lowercase

UPPERCASE

Title Case

camelCase

PascalCase

snake_case

kebab-case

How to Use the Case Converter

  1. Type or paste your text into the input field above
  2. All case conversions will update automatically as you type
  3. Click the "Copy" button next to any converted result to copy it to your clipboard
  4. Use the "Clear" button to remove all text and start over

Frequently Asked Questions

What is camelCase?

camelCase is a naming convention where the first letter of each word except the first is capitalized, and all spaces are removed. It's commonly used in programming for variable and function names in languages like JavaScript, Java, and Swift. Example: thisIsCamelCase

What is snake_case used for?

snake_case uses all lowercase letters with underscores between words. It's the standard naming convention in Python, Ruby, and is commonly used for database column names and file names. Example: this_is_snake_case

What's the difference between camelCase and PascalCase?

The only difference is the first letter: camelCase starts with a lowercase letter (myVariable) while PascalCase starts with an uppercase letter (MyVariable). PascalCase is often used for class names in object-oriented programming.

When should I use Title Case?

Title Case is used for book titles, article headlines, and document titles. Each major word is capitalized while smaller words like "a", "the", and "of" are typically lowercase (though our converter capitalizes all words for simplicity).

Common Use Cases

  • Programming variable names: Use camelCase or snake_case depending on your language's conventions
  • URL slugs: Use kebab-case for clean, SEO-friendly URLs
  • Titles and headings: Use Title Case for professional documents and articles
  • Database column names: Use snake_case for consistency and readability
  • Class names: Use PascalCase in most object-oriented programming languages
  • Constants: Use UPPERCASE for constants in many programming languages