Cc

Text Case Converter

Convert text between camelCase, snake_case, PascalCase, UPPER_CASE, kebab-case, and more.

0 chars

How to Use

  1. Type or paste your text into the input area.
  2. Click any conversion button — the text updates instantly.
  3. Use the Copy button to copy the converted result to your clipboard.

Frequently Asked Questions

What is camelCase?
camelCase starts with a lowercase letter and capitalizes the first letter of each subsequent word, with no spaces or separators. Example: <code>myVariableName</code>.
How is snake_case different from kebab-case?
snake_case uses underscores as word separators, while kebab-case uses hyphens. Both are lowercase. Example: <code>my_variable</code> vs <code>my-variable</code>.
What is CONSTANT_CASE used for?
CONSTANT_CASE (also called SCREAMING_SNAKE_CASE) is all uppercase with underscores. It's commonly used for constants in many programming languages.
Does this support Unicode / non-ASCII text?
Basic word detection works on ASCII alphanumeric characters. Non-ASCII characters are preserved but may not follow expected casing rules in all cases.