🔡

Case Converter

Convert text between UPPERCASE, lowercase, Title Case, Sentence case, camelCase, PascalCase, snake_case and more.

Frequently Asked Questions

camelCase joins words without spaces, capitalising each word except the first: "helloWorldExample". It is commonly used in JavaScript variable names and JSON keys.
Title Case capitalises the first letter of every word ("The Quick Brown Fox"). Sentence case only capitalises the first letter of the first word and proper nouns ("The quick brown fox").
snake_case uses underscores between words in lowercase: "hello_world_example". It is popular in Python, Ruby, and database column naming conventions.