Free UPPERCASE Converter — Change Text to Capitals Instantly

Convert any text to UPPERCASE in one click. Paste your text above and hit UPPERCASE — every letter is capitalised instantly, in your browser, with no signup and no limit on length. Works for headings, acronyms, legal disclaimers, spreadsheet columns and code constants.

0 characters · 0 words

What Does Converting to Uppercase Do?

Uppercase (also called all caps or capital letters) converts every alphabetic character in your text to its capital form. Numbers, punctuation and spacing are left untouched. It is the fastest way to standardise text that arrived in mixed capitalisation — pasted from a PDF, exported from a spreadsheet, or typed by several different people.

Example:

Input:

terms and conditions apply

Output:

TERMS AND CONDITIONS APPLY

When Should You Use UPPERCASE?

Language / ContextUsageExample
Legal & complianceDisclaimers and warranty textAS IS, WITHOUT WARRANTY
Code constantsEnvironment variables, constantsMAX_RETRY_COUNT
Design & signageShort headings, labels, buttonsSHOP NOW
SpreadsheetsNormalising imported columnsCOUNTRY CODE: GB
AcronymsFixing lowercase acronyms in bulkNASA, HTML, API
Print & packagingIngredient and warning panelsCONTAINS NUTS

When UPPERCASE Helps — and When It Hurts

Input Text✅ Correct❌ Wrong Format
shop nowSHOP NOW (short button label)A whole paragraph set in capitals
contains nutsCONTAINS NUTS (allergen warning)CONTAINS NUTS!!! (caps plus punctuation reads as shouting)
max retry countMAX_RETRY_COUNT (a constant)MAX RETRY COUNT (spaces are invalid in most languages)
read our terms and conditions before continuingSentence case for body copyREAD OUR TERMS AND CONDITIONS BEFORE CONTINUING
email subject lineTitle Case or sentence caseALL CAPS SUBJECT (a well-known spam trigger)

UPPERCASE vs Other Cases — What's the Difference?

Case TypeExampleUsed InFirst Letter
UPPERCASEHELLO WORLDEvery letter capitalisedAll caps
lowercasehello worldEvery letter loweredNo caps
Title CaseHello WorldMajor words capitalisedMixed
Sentence caseHello worldFirst letter onlyMixed

Ready to convert your text? Use the tool at the top of this page — it's free, instant, and requires no signup.

Frequently Asked Questions

How do I convert text to uppercase online?

Paste or type your text into the converter above and click UPPERCASE. Every letter is capitalised instantly. Nothing is uploaded — the conversion happens entirely in your browser, so it is safe for confidential text.

How do I change lowercase to uppercase in Word or Google Docs?

In Microsoft Word, select the text and press Shift + F3 to cycle through UPPERCASE, lowercase and Capitalise Each Word, or use Home > Change Case. In Google Docs, use Format > Text > Capitalisation > UPPERCASE. For anything longer than a page, pasting it into the converter above is usually faster.

Is there a limit on how much text I can convert?

No. There is no character limit, no signup and no usage cap. The conversion runs in your browser, so the only practical limit is how much text your browser can hold in memory — comfortably hundreds of thousands of words.

Does the uppercase converter change numbers or punctuation?

No. Only alphabetic characters are affected. Numbers, punctuation, symbols, spacing and line breaks are preserved exactly as you entered them.

Why does ALL CAPS text feel like shouting?

Capital letters have uniform height, which removes the distinctive word shapes readers rely on to scan quickly — so long passages in caps read more slowly and register as emphatic. Use uppercase for short labels, warnings and constants, and sentence case for anything a person has to actually read.

Should I use uppercase or CSS text-transform on a website?

For display purposes, prefer CSS text-transform: uppercase. It keeps the original text in your HTML, so screen readers and search engines still see the properly capitalised version while visitors see capitals. Convert the text itself only when the stored value genuinely needs to be uppercase — a code constant, for example.