Case Converter
Transform your text between any case format instantly with linguistic precision.
Common Case Formats
snake_case
Standard for database columns and Python variables. Uses underscores.
camelCase
The backbone of JavaScript. Capitalizes subsequent words.
kebab-case
Preferred for URLs and CSS class names. Hyphens connect words.
Usage Guide
- 01Paste your text into the editor above.
- 02Click a transformation card to convert instantly.
- 03Line breaks and formatting are preserved.
- 04Copy the result or download it as a .txt file.
Frequently Asked Questions
When Each Case Style Belongs
The case styles and their homes
Case isn't decoration — each style signals a context, and the wrong one reads as a mistake:
| Style | Example | Where it belongs |
|---|---|---|
| UPPERCASE | FINAL NOTICE | Acronyms, warnings, legal headers |
| lowercase | quiet, informal | Casual posts, some brand voices |
| Title Case | The Art of the Headline | Headlines, book and section titles |
| Sentence case | Only the first word capitalized | Body text, UI labels, most web headings |
| camelCase / snake_case | userName / user_name | Code identifiers |
Title case is trickier than it looks
“Capitalize the big words” hides real rules: articles (a, the), short conjunctions (and, or) and short prepositions (of, in, to) stay lowercase — unless they're the first or last word, which always capitalize. Style guides disagree on the details (AP capitalizes 4+ letter prepositions, Chicago doesn't), so consistency within one document matters more than which rule you pick. The converter applies the rules instantly, which beats remembering them.
The rescue job: ALL-CAPS paste
The classic use: someone sends a paragraph typed with caps lock on, and retyping it is the last thing you want. Convert to sentence case, fix the few proper nouns by hand, done. While cleaning text up, the word counter checks length limits, the grammar checker catches what conversion can't, and headed for a URL, the slug generator produces clean lowercase-hyphenated strings.