Case Converter
Convert your text to any case format β UPPERCASE, lowercase, Title Case, camelCase, PascalCase, snake_case, and more.
Enter Text
Case Format Reference
| Format | Example | Common Use |
|---|---|---|
| UPPERCASE | HELLO WORLD | Acronyms, constants |
| lowercase | hello world | URLs, slugs |
| Title Case | Hello World | Titles, headings |
| camelCase | helloWorld | JS variables |
| PascalCase | HelloWorld | Classes, components |
| snake_case | hello_world | Python, databases |
| kebab-case | hello-world | CSS classes, URLs |
Frequently Asked Questions
What is Title Case?
Title Case capitalizes the first letter of each major word. Short words like "a", "an", "the", "and", "but", "or", "in", "on", "at" are typically lowercased unless they start the title.
What's the difference between camelCase and PascalCase?
camelCase starts with a lowercase letter (helloWorld). PascalCase (also called UpperCamelCase) starts with an uppercase letter (HelloWorld). PascalCase is commonly used for class and component names.