Lowercase Converter

Lowercase text converter

Make everything small. Paste text stuck in caps and convert it to clean lowercase in one tap.

▌ Input / Output
CHARS 0NO-SPACE 0WORDS 0LINES 0SENT 0
Case
Developer
Lines & sort
Clean up & encode

How to convert text to lowercase

Paste your text and tap lowercase to turn every letter small. It's the fastest way to normalize text that arrived in mixed or upper case — useful for tidying data, matching values consistently, or getting the relaxed all-lowercase look some brands and social bios use on purpose.

Common uses

Lowercasing is a quiet workhorse. Developers lowercase strings before comparing them so that Email and email match; it's standard for email addresses, tags, slugs and URLs, which are conventionally lowercase. Writers and designers use it for a deliberately casual, modern tone — think lowercase wordmarks and bio lines. And it's the quickest fix when caps lock got left on and a whole line arrived shouting.

A caveat for data

Lowercasing everything also lowers proper nouns and acronyms, so it's best for normalizing or styling rather than for prose you'll publish as-is. To turn text back into readable sentences, use the sentence case converter; to build URL-friendly slugs specifically, the slugify tool lowercases and hyphenates in one step.

Doing it in Excel, Word and Google Docs

  • Excel and Google Sheets: =LOWER(A1) lowercases a cell. Paste the result back as values if you want to replace the original rather than keep a live formula.
  • Word: select the text and press Shift + F3 until it lands on lowercase — the same shortcut cycles through the other cases.
  • Google Docs: Format → Text → Capitalization → lowercase.

If text arrived in capitals because Caps Lock was on, converting the characters is the permanent fix. If it looks capitalised because of a Word All Caps formatting effect, the characters were never changed — clearing that formatting restores what was actually typed.

Where lowercase genuinely matters

Plenty of systems treat case as meaningful, and normalising to lowercase is how you make comparisons behave:

  • Email addresses. The domain half is case-insensitive, so most systems lowercase the whole address before storing or comparing it.
  • URLs and slugs. Paths are case-sensitive on most Unix servers, so /About and /about can be two different pages. The slug generator lowercases as part of producing a clean URL.
  • CSS and HTML. Class names are case-sensitive in CSS even though tag names are not, which is why lowercase-with-hyphens is the near-universal convention.
  • Deduplicating lists. Lowercasing first means "Apple" and "apple" collapse to one entry rather than surviving as two.

Where lowercasing destroys data

It is a blunt instrument, and some of what it removes cannot be put back. Proper nouns lose their capitals — Paris, NASA and iPhone all come out wrong, and no automatic process reliably restores them, because knowing that "apple" should be "Apple" requires understanding the sentence.

Case-sensitive values are the more dangerous category. API keys, base64 strings, password hashes, commit SHAs and many product codes all encode meaning in their capitals; lowercasing them silently breaks the value while leaving something that still looks plausible. Turkish is a specific trap too: the correct lowercase of I in Turkish is the dotless ı, not i, so default rules mangle Turkish text.

Convert a copy rather than your only version. For the reverse direction use the uppercase converter, and for restoring sentence capitalisation the sentence case converter is closer to what you probably want.

FAQ

How do I undo all caps?
Paste the text and click lowercase to make it all small, or Sentence case to capitalize just the first letter of each sentence.
Will it change numbers or symbols?
No — only letters are affected.
How do I convert text to lowercase in Excel?
Use =LOWER(A1) in a blank cell pointing at the text you want converted, then copy and paste as values if you want to replace the original. In Word, select the text and press Shift + F3 until it reaches lowercase.
Will lowercasing break email addresses or URLs?
Email addresses are safe in practice — the domain is case-insensitive and most systems lowercase the whole address anyway. URLs are riskier, since paths are case-sensitive on most servers, so /About and /about can be different pages.
What should I never lowercase?
Anything where capitals carry meaning: API keys, base64 strings, password hashes, commit SHAs and many product codes. Lowercasing silently breaks the value while leaving something that still looks valid. Proper nouns are also unrecoverable afterwards.

Related tools