Lowercase text converter
Make everything small. Paste text stuck in caps and convert it to clean lowercase in one tap.
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 + F3until 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
/Aboutand/aboutcan 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.