Case Converter

Convert text between UPPER, lower, Title, camelCase, snake_case and kebab-case.

Frequently asked questions

Which cases can it convert to?

UPPERCASE, lowercase, Title Case, Sentence case, camelCase, PascalCase, snake_case and kebab-case — the common formats used in writing and programming.

What is the difference between camelCase and snake_case?

camelCase joins words with capitals (myVariableName), while snake_case joins them with underscores (my_variable_name). Different languages and styles prefer different ones.

Does it handle punctuation?

For the programming cases it strips punctuation and separators to produce a clean identifier; for the writing cases it preserves your text and only changes capitalisation.