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
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.
snake_case uses underscores (hello_world), common in Python and SQL. kebab-case uses hyphens (hello-world), common in URLs and CSS class names.
Title Case capitalizes the first letter of every word. It is used for article titles, headings, and proper nouns.