Transform text across common programming and editorial cases. Fully client-side — no account, uploads, or remote storage.
Added Apr 18, 2026
Input
Result
Enter a value for input text to see your result.
Converts text between common naming conventions and case styles used in writing and programming. Handles spaces, punctuation, and existing casing when splitting words before recombining.
Inputs
Result
Inputs
Result
Inputs
Result
camelCase joins words without spaces, capitalising the first letter of each word except the first (e.g., 'myVariableName'). It is widely used in JavaScript and many other programming languages.
snake_case uses underscores to join words (e.g., 'my_variable_name') and is common in Python and SQL. kebab-case uses hyphens (e.g., 'my-variable-name') and is common in CSS and URLs.