Case Converter
Convert text to UPPERCASE, lowercase, Title Case, Sentence case, camelCase, PascalCase, snake_case, or kebab-case.
Input
Output
camelCase and PascalCase are common in JavaScript/Java variable and class names; snake_case is common in Python and databases; kebab-case is common in URLs and CSS classes.
Frequently asked questions
How do I convert text to camelCase or snake_case online?
Paste your text and click the case you want. Word boundaries are detected from spaces, hyphens, underscores, and existing capitalization.
Does this work on multi-word variable names like "myVariableName"?
Yes — existing camelCase or PascalCase input is split back into words before being reassembled in the target case.