Case Formats Reference
| Format | Example | Common Use |
|---|---|---|
| UPPER CASE | HELLO WORLD | Emphasis, headings, constants |
| lower case | hello world | General text, email addresses |
| Title Case | Hello World | Headings, proper nouns, book titles |
| Sentence case | Hello world | Normal sentences, UI copy |
| camelCase | helloWorld | JavaScript variables, JSON keys |
| PascalCase | HelloWorld | Class names, React components |
| snake_case | hello_world | Python variables, database columns |
| kebab-case | hello-world | CSS classes, URL slugs, HTML attributes |
| CONSTANT_CASE | HELLO_WORLD | Constants, environment variables |