Case Converter
Paste your text, then pick a case. The text is converted instantly — copy it back with one click.
Reviewed by the ToolNestr Editorial Team — July 2026
How case conversion works
Each case transform applies a specific algorithm to every character in your text. Understanding the logic behind each mode helps you choose the right one and avoid surprises.
UPPERCASE
Every letter is raised via .toUpperCase(). Used for acronyms (NASA), warnings (CAUTION), and shorthand emphasis. Readability drops sharply in long passages.
lowercase
Every letter lowered via .toLowerCase(). Standard for casual writing, poetry, branding (e.g. "ebay"), and code identifiers. All-caps passages are often lowercased for readability.
Title Case
First letter of each word capitalised via regex /\w\S*/g. Note: our version capitalises every word, unlike AP/Chicago styles that leave short articles lowercase. Perfect for headlines, names and section headers.
Sentence case
First letter of each sentence capitalised via regex /(^\s*\w|[.!?]\s*\w)/g. Everything else is lowered. Standard for emails, articles and body text. Handles multiple sentences in one pass.
aLtErNaTiNg
Cycles case on each letter skipping non-alphabetic characters: even index = lowercase, odd = uppercase. Originated from early internet meme culture. Also called "sticky case" or "spongebob case".
InVeRsE
Flips every letter's case: uppercase becomes lowercase and vice versa. Useful for fixing an accidentally locked Caps Lock. Same as pressing Shift+F3 in many word processors.
Worked example
Input: "the quick brown fox jumps over the lazy dog"
Why text case matters
Text case affects readability, tone and professionalism. A headline in ALL CAPS feels like shouting. A lowercase bio looks casual. Title Case signals formality. Getting the case right matters for emails, essays, social media bios, code comments, database entries and legal documents. This tool lets you switch between every common text case instantly — no retyping needed.
Writers & Editors
Format headings, fix Caps Lock accidents, and ensure consistent title styling across articles. A case converter saves minutes of manual retyping.
Students
Meet formatting requirements for essays and citations. Many academic style guides specify case rules for titles, headings and reference lists.
Developers
Normalize database entries, format JSON keys, convert between camelCase and PascalCase, and clean up user-submitted text.
Social Media Managers
Craft eye-catching headlines, format hashtags, and create alternating-case text for viral posts. Consistent branding starts with consistent formatting.
Title Case rules by style guide
| Style Guide | Capitalise | Lowercase | Example |
|---|---|---|---|
| AP Style | Words ≥ 4 letters | a, an, the, and, but, for, nor, of, or, so, yet | "The Man Who Knew Too Much" |
| Chicago Manual | All words except... | Articles, prepositions, conjunctions (regardless of length) | "A Tale of Two Cities" |
| APA 7th | Major words (≥ 4 letters) | Short words (< 4 letters) unless first/last | "The Effects of Sleep on Memory" |
| MLA 9th | First/last word + all nouns, pronouns, verbs, adjectives, adverbs | Articles, prepositions, coordinating conjunctions | "To Kill a Mockingbird" |
| Wikipedia | First/last + every word except... | a, an, the, and, but, or, for, nor, to, of, up, in, as, at, by, on | "History of the United Kingdom" |
Common case conversion pitfalls
Acronyms and initialisms
Running Title Case on "NASA launched a NASA satellite" produces "Nasa Launched A Nasa Satellite" — losing the correct uppercase acronym. Always check uppercase-sensitive terms after conversion.
Proper nouns
Names like "McDonald" or "iPhone" get mangled by case conversion. McDonald becomes "Mcdonald" in lowercase modes. These names need manual correction after automated transforms.
Unicode edge cases
Some scripts (Turkish İ/i, German ß/SS) have context-sensitive case mappings. JavaScript's .toUpperCase() and .toLowerCase() follow Unicode rules, but locale-specific behaviour can vary.
Title Case over-capitalisation
Our Title Case capitalises every word. Formal style guides leave short words lowercase. If you need AP or Chicago rules, you'll need to manually adjust the result for strict compliance.
How to use this case converter
Paste your text
Type or paste any text — from an article, email, document or social media post.
Choose a case
Click any case button — the text transforms instantly. Try different styles to see what fits.
Copy & use
Copy the formatted text with one click. Paste it into your document, email or post.
Tips for consistent text formatting
For web content
Use Title Case for headings and Sentence case for body text. Avoid ALL CAPS in paragraphs — it reduces readability by up to 35% according to readability studies.
For academic writing
Follow your style guide (APA, MLA, Chicago) for title capitalization. Most guides capitalize major words but leave articles and prepositions lowercase.
For social media
lowercase usernames and hashtags are easier to read and type. Use Capitalize for display names. Save alternating case for ironic or humorous posts.
Frequently asked questions
What is Title Case vs Sentence case?
Title Case capitalizes the first letter of most words (great for headings). Sentence case capitalizes only the first letter of each sentence, like normal writing.
Will it keep my line breaks?
Yes. Converting case only changes letters, so your paragraphs and line breaks stay exactly as they are.
Is there a character limit?
No. Paste as much text as you like — it is all processed instantly on your device.
Is my text private?
Yes. The converter runs entirely in your browser, so nothing is uploaded or stored.
Why would I use alternating case?
Alternating (aLtErNaTiNg) case is commonly used in social media memes and sarcastic text to convey tone.
Does this handle accented characters?
Yes. Letters with accents (é, ü, ñ) are preserved and their case is changed correctly.
What is the difference between Capitalize and Title Case?
Capitalize capitalizes every word no matter what. Title Case follows style rules — short words like "and" or "the" may stay lowercase in many style guides.
Can I convert case in bulk?
Yes. The tool processes all your text at once with no limits on length.