Case Converter
1.
Paste or type your text
2.
Select the target format from the dropdown - camelCase, snake_case, Title Case, and more
3.
Copy the result
▸
Converting variable names between programming languages
▸
Formatting SQL column names or code identifiers
▸
Cleaning up text for headings, slugs, or labels
Does this work with non-English characters?
Most conversions handle standard ASCII letters. Accented characters and non-Latin scripts pass through unchanged since case rules vary by language.
What is camelCase used for?
camelCase is the standard naming convention in JavaScript and many other languages - variable names start lowercase and each subsequent word is capitalized (e.g., myVariableName).
What is the difference between PascalCase and camelCase?
Both join words without spaces, but PascalCase capitalizes the first letter of every word (including the first), while camelCase keeps the first letter lowercase.
Is my text sent to a server?
All conversion happens instantly in your browser. No text is transmitted or stored anywhere.
Can I convert a whole document?
You can paste as much text as you need - there is no character limit. The conversion applies to the entire input at once.