Ad Unit — Top
Case Converter
Instantly convert text to any case format.
Result —
Case Format Reference
| Format | Example | Common Use |
|---|---|---|
| UPPER CASE | HELLO WORLD | Headings, acronyms, emphasis |
| lower case | hello world | General text, URLs |
| Title Case | Hello World | Titles, headings, names |
| Sentence case | Hello world | Standard sentences |
| 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, URLs, HTML attributes |
| CONSTANT_CASE | HELLO_WORLD | Constants, environment variables |
Frequently Asked Questions
What is camelCase? ▼
camelCase writes compound words with no spaces, starting with a lowercase letter, and capitalizing the first letter of each subsequent word. Example: myVariableName. It's widely used in JavaScript and JSON.
What is the difference between camelCase and PascalCase? ▼
Both join words without spaces. camelCase starts with a lowercase letter (myVariable), while PascalCase starts every word with uppercase (MyVariable). PascalCase is used for class names and React components.
What is snake_case used for? ▼
snake_case uses underscores to separate words and is commonly used in Python variable names, database column names, and file names.
What is kebab-case? ▼
kebab-case uses hyphens to join words (like a kebab skewer). It's standard for CSS class names, HTML data attributes, and URL slugs.
Ad Unit — Middle