Case converter
Paste any text — multiple words, an existing identifier, a sentence — and get it in every common case style.
camelCase
PascalCase
snake_case
kebab-case
CONSTANT_CASE
Title Case
Sentence case
dot.case
What is Case converter?
Programming languages and style guides each favor different casing conventions for identifiers — camelCase for JavaScript variables, snake_case for Python, kebab-case for URLs and CSS classes — converting between them by hand is tedious and error-prone.
How to use it
Type any text, phrase, or existing identifier and every common case style is generated at once.
Example
"hello world" -> helloWorld / HelloWorld / hello_world / hello-world / HELLO_WORLD