Text Tools
Case Converter
Convert text between UPPERCASE, lowercase, Title Case, Sentence case, camelCase, snake_case, and kebab-case with one click.
FAQ
What is Title Case?
Title Case capitalises the first letter of every word. For example: "The Quick Brown Fox".
What is Sentence case?
Sentence case capitalises only the first letter of the first word in each sentence.
What is camelCase?
camelCase joins words without spaces, capitalising the first letter of each word except the first. Used in programming.
What is snake_case?
snake_case joins words with underscores, all in lowercase. Common in Python and database column names.
What is kebab-case?
kebab-case joins words with hyphens, all in lowercase — e.g. my-variable-name. Widely used in URLs, CSS class names, and HTML attributes.