Case Converter
Convert text between common case styles with one click.
Rename variables, format headings, or clean up pasted text. This case converter supports developer-friendly styles like camelCase and snake_case as well as sentence and title case — all processed locally in your browser.
Result
—
Related tools
How to use
- Type or paste your text.
- Click a case style button to convert.
- Copy the result from the output panel.
FAQ
- What is camelCase?
- Words are joined without spaces; each word after the first starts with a capital letter, e.g. myVariableName.
- What is snake_case vs kebab-case?
- snake_case uses underscores between words (my_variable). kebab-case uses hyphens (my-variable). Both are common in code and URLs.
- Does it work with multi-line text?
- Yes. Title and sentence case apply per line rules where relevant.
- Is my text sent to a server?
- No. Conversion happens entirely in your browser.
- Can I convert code identifiers?
- Yes. Use camelCase, PascalCase, snake_case, or kebab-case for variable and file naming conventions.