How to Convert Text to Uppercase, Lowercase, and Title Case
To convert text between uppercase, lowercase, and title case, use an online case converter tool that instantly transforms your text with a single click. Our Case Converter supports uppercase, lowercase, title case, sentence case, and alternating case — all in one place.
Different Case Types Explained
Understanding the different case types helps you choose the right one for your content:
UPPERCASE
Every letter is capitalized. Used for headings, acronyms, and emphasis.
THIS TEXT IS IN ALL CAPS. IT IS MOSTLY USED FOR SHORT HEADLINES OR ACRONYMS.
lowercase
No letters are capitalized. Used for casual writing, email addresses, and URLs.
this text is in all lowercase. it is often used for informal writing.
Title Case
Major words are capitalized. Used for book titles, article headlines, and document titles.
This Text Is In Title Case. It Is Used For Article And Book Titles.
Sentence case
Only the first word and proper nouns are capitalized. Standard for most writing.
This text is in sentence case. It is the most common format for writing.
tOGGLE cASE
Alternates the case of each letter. Used for stylistic effect.
tHiS tExT iS iN tOgGlE cAsE. iT iS mOsTlY uSeD fOr FuN.
ALTERNATING CASE
Same as toggle but can start with either uppercase or lowercase.
When to Use Each Case Type
| Case Type | Best Used For | Example |
|---|---|---|
| UPPERCASE | Acronyms, warnings, short headings | SALE ENDS TODAY |
| lowercase | URLs, email addresses, code | [email protected] |
| Title Case | Article titles, book titles, headings | How to Convert Text Case |
| Sentence case | Body text, paragraphs, standard writing | How to convert text case online. |
| tOGGLE cASE | Stylistic effect, social media | tHiS lOoKs CoOl |
How to Convert Case in Word and Google Docs (Manual Method)
Microsoft Word
- Select the text you want to convert
- Press Shift+F3 to cycle through uppercase, lowercase, and title case
- Or click the “Change Case” button in the Home tab (Aa icon)
Google Docs
- Select the text
- Click “Format” → “Text” → “Capitalization”
- Choose from lowercase, UPPERCASE, or Title Case
The manual method works but requires multiple clicks and only offers a few case options.
How to Convert Case Online (Faster Method)
Our Case Converter offers all case types in one place:
- Open the Case Converter tool
- Type or paste your text into the input area
- Click the case button you want (uppercase, lowercase, title case, sentence case, or toggle case)
- Copy the converted text instantly
The tool shows all case variations at once so you can compare and choose the best one.
Case Conversion in Programming
JavaScript
// Uppercase
text.toUpperCase();
// Lowercase
text.toLowerCase();
// Title Case
text.replace(/\w\S*/g, w => w.charAt(0).toUpperCase() + w.slice(1).toLowerCase());
Python
# Uppercase
text.upper()
# Lowercase
text.lower()
# Title Case
text.title()
# Sentence Case
text.capitalize()
Common Use Cases
- Fix accidentally caps-locked text — convert “I ACCIDENTALLY TYPED THIS” to “I accidentally typed this”
- Format article titles — convert titles to title case according to style guides
- Clean up imported data — normalize case in databases and spreadsheets
- Prepare content for publishing — ensure consistent formatting across documents
- Write social media posts — use toggle case for attention-grabbing content
- Format code — follow programming language naming conventions
FAQ
Does case conversion affect special characters?
No. Case conversion only affects letters (A-Z, a-z). Numbers, punctuation, spaces, and special characters remain unchanged.
What about accented letters?
Accented letters like é, ü, and ñ have uppercase equivalents (É, Ü, Ñ). The case converter handles these correctly.
Does the tool work with Unicode text?
Yes. The case converter supports Unicode characters, including accented letters, Cyrillic, Greek, and other alphabet systems that have case distinctions.
Why is title case sometimes inconsistent?
Title case rules vary by style guide. Our tool capitalizes every major word following standard title case rules. Some style guides (like AP) have specific rules for articles, prepositions, and conjunctions that may differ.
Can I convert large amounts of text?
Yes. The tool handles large text files efficiently. All processing is done in your browser, so performance depends on your device.
What is the difference between title case and sentence case?
Title case capitalizes every major word. Sentence case capitalizes only the first word and proper nouns. Use title case for formatted titles and headings; use sentence case for regular text.
Try our free Case Converter tool to instantly convert text between uppercase, lowercase, title case, sentence case, and toggle case.