🔡Text Case Converter

Enter text and click a format button to convert instantly — 8 case styles supported.

How to Use the Text Case Converter

Paste any text and click the format button you need. UPPERCASE and lowercase are for all-caps or all-small letters. Title Case capitalizes the first letter of each word — useful for headings. Sentence case capitalizes only the first letter of the text. camelCase and PascalCase are used in programming variable and class names. snake_case is standard in Python and databases; kebab-case is used in URLs and CSS. The converter intelligently splits camelCase, PascalCase, and hyphenated input into words before reformatting.

Frequently Asked Questions

What is the difference between camelCase and PascalCase?

camelCase starts the first word lowercase (helloWorld); PascalCase starts every word uppercase (HelloWorld). camelCase is used for JavaScript variables; PascalCase for class and component names.

What is the difference between snake_case and kebab-case?

snake_case uses underscores (hello_world), common in Python and SQL. kebab-case uses hyphens (hello-world), common in URLs and CSS class names.

How does Title Case work?

Title Case capitalizes the first letter of every word. It is used for article titles, headings, and proper nouns.