Free Lowercase Converter — Turn UPPERCASE Text Back to Normal

Convert any text to lowercase in one click. Paste your text above and hit lowercase — every capital is lowered instantly, in your browser, with no signup and no length limit. The fastest fix for text that arrived in ALL CAPS from a form, a scanner, a spreadsheet export or a caps-lock accident.

0 characters · 0 words

What Does Converting to Lowercase Do?

Lowercase conversion turns every alphabetic character into its small form, leaving numbers, punctuation and spacing untouched. Beyond fixing accidental capitals, it is the standard way to normalise text before comparing or storing it — because 'User@Example.com' and 'user@example.com' are the same address to a human but two different strings to a computer.

Example:

Input:

PLEASE CONFIRM YOUR EMAIL ADDRESS

Output:

please confirm your email address

When Should You Convert to Lowercase?

Language / ContextUsageExample
Email addressesNormalising before storageUser@Example.com → user@example.com
URL slugsBuilding clean page URLs/my-blog-post
DatabasesCase-insensitive comparisonLOWER(email) = ?
Tags & searchMatching user input reliably#Marketing → #marketing
Fixing caps lockRescuing accidentally shouted textHI THERE → hi there
Imported dataCleaning scanned or exported textSMITH, JOHN → smith, john

Lowercase Done Right — and Wrong

Input Text✅ Correct❌ Wrong Format
User@Example.COMuser@example.com (normalised for storage)Storing it as typed and creating a duplicate account
My Blog Post Titlemy-blog-post-title (URL slug)My_Blog_Post_Title (capitals in URLs cause 404s)
HELLO EVERYONE, THANKS FOR JOININGLowercase, then apply sentence caseLeaving it in caps and hoping nobody notices
NASA confirmed the launchKeep the acronym: NASA confirmed the launchnasa confirmed the launch (lowercasing destroys acronyms)
iPhone and eBayLeave intentional casing aloneiphone and ebay (brand names lose their identity)

lowercase vs Other Cases — What's the Difference?

Case TypeExampleUsed InFirst Letter
lowercasehello worldEvery letter loweredNo caps
UPPERCASEHELLO WORLDEvery letter capitalisedAll caps
Sentence caseHello worldFirst letter of each sentenceMixed
kebab-casehello-worldLowercase joined by hyphensURL slugs

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 lowercase online?

Paste or type your text into the converter above and click lowercase. Every capital letter is lowered instantly. Nothing is uploaded — the conversion happens entirely in your browser, so it is safe to use with confidential text.

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

In Microsoft Word, select the text and press Shift + F3 until it reaches lowercase, or use Home > Change Case > lowercase. In Google Docs, use Format > Text > Capitalisation > lowercase. For long documents or text pasted from elsewhere, the converter above is usually quicker.

Will lowercasing ruin my acronyms and brand names?

Yes — a plain lowercase conversion cannot tell NASA from a normal word, so acronyms, proper nouns and brands like iPhone will all be lowered. If you are cleaning up mixed text, convert to lowercase first, then apply Sentence case and restore acronyms and names by hand.

Why do developers lowercase email addresses?

Because the local part of an email address is technically case-sensitive but virtually never used that way in practice. Normalising to lowercase before storing or comparing prevents the same person creating duplicate accounts as User@example.com and user@example.com.

Should URLs be lowercase?

Yes. Paths on most web servers are case-sensitive, so /My-Page and /my-page are different URLs — which causes 404s, split link equity and duplicate-content issues. Keep every slug lowercase and separate words with hyphens.

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

No. There is no character limit, no signup and no usage cap. Because the conversion runs in your browser, the only real limit is your browser's memory — comfortably hundreds of thousands of words.