📚 Case Style Reference Guide
Not sure which case to use? Here's a quick guide to all 12 supported case styles:
| Case Style | Example | Common Uses |
|---|---|---|
| UPPERCASE | HELLO WORLD | Headings, warnings, acronyms |
| lowercase | hello world | URLs, emails, CSS class names |
| Title Case | Hello World | Book titles, headlines, page titles |
| Sentence case | Hello world | Normal writing, paragraphs |
| camelCase | helloWorld | JavaScript, Java variables |
| PascalCase | HelloWorld | Class names, React components |
| snake_case | hello_world | Python, database columns, file names |
| kebab-case | hello-world | CSS classes, HTML attributes, URLs |
| CONSTANT_CASE | HELLO_WORLD | Constants in code (JS, Java, C++) |
| aLtErNaTe | hElLo WoRlD | Memes, social media humor |
| iNVERSE cASE | hELLO wORLD | Inverts existing capitalization |
| dot.case | hello.world | Config keys, object notation |
📖 How to Use the Case Converter
Paste or Type Your Text
Click the Input Text box on the left and paste your content using Ctrl+V (Windows) or Cmd+V (Mac), or simply start typing.
Choose a Case Style
Click any of the 12 case style buttons — such as UPPERCASE, Title Case, camelCase, or snake_case. The result appears instantly in the output box.
Copy the Result
Click Copy Result to copy the converted text to your clipboard. You can then paste it anywhere — a document, code editor, or email.
Try Different Styles
You can keep clicking different case buttons without re-pasting your text. The original input is always preserved so you can switch between styles freely.
❓ Frequently Asked Questions
Sentence case only capitalizes the first letter of the first word in each sentence — e.g. "The quick brown fox jumps over the lazy dog."
myVariableName. It is most commonly used for naming variables and functions in JavaScript, Java, and Swift.
hello_world. It is common in Python and database naming.kebab-case joins words with hyphens:
hello-world. It is common in CSS class names, HTML attributes, and URLs.