Case Converter

Convert text to UPPER CASE, lower case, Title Case, or Sentence case instantly.

Stays in your browser · Always free
Output

The four casing styles above cover almost every situation that calls for re-cased text: book and article titles, headlines, normalizing copy-pasted content, fixing accidental caps lock. Paste in any length of text - a word, a paragraph, a whole document - and one click swaps it. Everything runs in your browser, so the text never leaves your device.

Casing styles, briefly

UPPER CASE capitalizes every letter. Used sparingly in body copy (it reads as shouting), but standard for acronyms, signage, and certain technical contexts.

lower case de-capitalizes everything. Useful when you've copied text from a source that's accidentally all-caps, or when normalizing user input before storage or comparison.

Title Case capitalizes the first letter of every word - "The Quick Brown Fox Jumps". The classic style for book and article titles, but with a wrinkle: most style guides (AP, Chicago) leave articles and short prepositions in lowercase ("of," "and," "the" mid-sentence). Different tools handle this differently; this one capitalizes every word for simplicity.

Sentence case capitalizes only the first word of each sentence and proper nouns - "The quick brown fox jumps". Increasingly the default for headlines on the web because it reads as more conversational. Punctuation matters: the converter splits on ., !, and ? to find sentence boundaries.

When to pick which
Article or blog post titles

Either Title Case or Sentence case works. Pick one and stick to it across your site - consistency matters more than which one. Sentence case has been trending for the last several years across most major publications.

Form field labels and UI buttons

Sentence case is now the dominant convention in software UI ("Sign in," "Forgot password"). Title Case ("Sign In," "Forgot Password") still appears but feels dated. ALL CAPS labels read as aggressive in modern interfaces.

Email subject lines

Sentence case is friendlier and tends to test better. ALL CAPS triggers spam filters and reads as desperate.

Cleaning up pasted content

Text from PDFs and scanned documents often arrives in inconsistent or all-caps form. Convert to lower, then to sentence case, to get something close to normal.

Frequently asked questions
What is Title Case?
Title Case capitalizes the first letter of every word: "the quick brown fox" becomes "The Quick Brown Fox." Commonly used for book titles, article headlines, and other display text. Some style guides keep short words (a, an, of, the) lowercase mid-sentence; this tool capitalizes every word for simplicity.
What is Sentence case?
Sentence case capitalizes only the first letter of each sentence, leaving the rest lowercase. "THE QUICK BROWN FOX. IT JUMPS." becomes "The quick brown fox. It jumps." It's now the dominant convention for web headlines and UI copy.
How do I convert text to all caps?
Paste your text into the input box and click UPPER CASE. Every letter is converted to uppercase instantly, regardless of length.
Can I convert multiple paragraphs?
Yes. The converter handles any amount of text - a word, a paragraph, several pages. Paste it all in and click the case you want.
Is my text saved or sent anywhere?
No. All conversion runs in your browser using JavaScript string methods. Nothing is transmitted. Safe for confidential text, drafts, or anything you'd rather not have logged.
What is the difference between Title Case and Sentence case?
Title Case capitalizes every word; sentence case capitalizes only the first word of each sentence (plus proper nouns). Title Case is the older convention for headings and book titles; sentence case is the modern default for web and UI text.
Does the tool preserve acronyms like NASA or USB?
Title Case and Sentence case re-case every letter according to position rules - they don't recognize acronyms. If your text contains acronyms that should stay capitalized, you may need to fix them manually after conversion. Lowercase and uppercase modes are unaffected.
What about other casing styles like camelCase or snake_case?
This tool focuses on natural-language casing. Programming-style cases (camelCase, PascalCase, snake_case, kebab-case) require different rules - splitting on word boundaries and rejoining with specific separators. Those are typically handled by code editors or a programming-specific tool.