Case Converter
All conversion happens locally in your browser. No text is transmitted or stored.
Frequently asked questions
What is camelCase and when is it used?
camelCase writes compound words with no spaces, with each word after the first starting with a capital letter — for example, "myVariableName". It is widely used in JavaScript, Java, and many other programming languages for naming variables and functions.
What is the difference between snake_case and kebab-case?
snake_case joins words with underscores (my_variable_name) and is common in Python and database column names. kebab-case joins words with hyphens (my-variable-name) and is the standard for URLs, CSS class names, and HTML attributes.
Does the case converter handle punctuation and special characters?
Yes. Title Case and Sentence case preserve existing punctuation while changing letter casing. camelCase, snake_case, and kebab-case strip non-alphanumeric characters and split on spaces, punctuation, and existing case boundaries to produce clean identifiers.