Developer Tool
Case converter
Convert text between camelCase, snake_case, kebab-case, PascalCase, Title Case, and more — instant and processed in your browser.
Your text
Type to convert into every case.
Converted
All cases
- lowercase
— - UPPERCASE
— - Title Case
— - Sentence case
— - camelCase
— - PascalCase
— - snake_case
— - kebab-case
— - CONSTANT_CASE
— - dot.case
—
Convert text case online
Transform any text into the case you need — from writing styles like Title Case and Sentence case to programming conventions like camelCase, snake_case, and kebab-case. Everything runs in your browser, so nothing is uploaded.
Cases produced
- Writing: lowercase, UPPERCASE, Title Case, Sentence case.
- Code: camelCase, PascalCase, snake_case, kebab-case, CONSTANT_CASE, dot.case.
Useful workflows
- Rename variables, keys, and files to a consistent convention.
- Turn a human label into a URL slug (kebab-case) or an env var (CONSTANT_CASE).
- Clean up copy before pasting into the word counter or JSON tool.
Frequently asked questions
How are word boundaries detected?
The converter splits on spaces and separators (_ - . /) and on camelCase boundaries, so getHTTPResponse and get_http_response both tokenize the same way.
Is my text sent anywhere?
No. All conversions happen locally in your browser with JavaScript.
Does it handle acronyms?
Runs of capitals (e.g. API, HTTP) are treated as a single token, so they convert cleanly into other cases.