Case converter
Transform text between common casing styles.
Result
The Quick Brown Fox Jumps Over The Lazy Dog
Transform text between UPPER CASE, lower case, Title Case, camelCase, snake_case, kebab-case, and more. Runs entirely in your browser.
Frequently asked questions
- What is camelCase?
- camelCase writes compound words with no spaces, capitalizing each word after the first (e.g., myVariableName). It is the standard in JavaScript, Java, and Swift.
- What is the difference between snake_case and kebab-case?
- snake_case joins words with underscores (my_variable), common in Python and SQL. kebab-case joins words with hyphens (my-variable), common in CSS and URLs.