The Case Converter transforms your text between UPPERCASE, lowercase, Title Case, Sentence case, camelCase, PascalCase, snake_case and kebab-case. Instant conversion with one click.
Frequently Asked Questions
What is Title Case?
Every major word is capitalised. Minor words (a, an, the, and, but, or) are usually lowercase unless they're the first word.
What is camelCase?
Words joined without spaces, each new word starting with a capital — like thisIsAnExample. Used in programming variable names.
What is snake_case?
Words joined by underscores, all lowercase — like this_is_an_example. Common in Python and database column names.
What is kebab-case?
Words joined by hyphens, all lowercase — like this-is-an-example. Common in URLs and CSS class names.