Case Converter
Paste text, click a style, copy the result. Fixes CAPS-LOCK accidents and formats headings, variables and slugs.
Which case for which job
| Style | Example | Used for |
|---|---|---|
| Title Case | The Quick Brown Fox | Headlines, book/report titles |
| Sentence case | The quick brown fox | Body text, most UI labels, modern headings |
| camelCase | theQuickBrownFox | Variables in JavaScript, Java |
| PascalCase | TheQuickBrownFox | Class names, React components |
| snake_case | the_quick_brown_fox | Python variables, database columns |
| kebab-case | the-quick-brown-fox | URLs, CSS classes, file names |
Title case, properly
Full style guides (AP, Chicago) lowercase short words — a, an, the, of, in, on, to, and, or — unless first or last in the title. This tool follows that rule rather than blindly capitalizing every word, so "the lord of the rings" becomes "The Lord of the Rings", not "The Lord Of The Rings".
For SEO and file naming
URL slugs should be kebab-case, lowercase, with no stop-word clutter: /mortgage-calculator beats /Mortgage_Calculator(FINAL2). Search engines treat hyphens as word separators; underscores historically weren't. Consistent lowercase also avoids duplicate-URL issues on case-sensitive servers.