Lowercase Text

Change every letter in your text to a small (lowercase) letter while keeping numbers and spacing as-is.

About the Lowercase Text tool

This tool converts every capital letter in your text to its small form, so HELLO World becomes hello world. Digits, spaces, and punctuation are untouched. It is handy for cleaning up text that was accidentally typed with Caps Lock on, normalising tags or email addresses, or preparing strings for case-insensitive comparison.

How to use it

  • Paste or type the text you want to lowercase.
  • Watch the all-small-letters output appear instantly.
  • Copy it for your form, code, or document.

Worth noting: lowercasing is a one-way change for casing, so the exact capital letters in the original cannot be recovered afterwards by uppercasing - keep a copy if you need the original. Many programs treat values like email addresses or usernames case-insensitively, and lowercasing first is a simple way to make them match. Accented capitals are lowercased correctly too. Everything runs locally in your browser, so your text is never uploaded.

Frequently asked questions

Will lowercasing change my numbers or punctuation?

No. Only uppercase letters are converted to lowercase. Numbers, spaces, and symbols stay exactly as you entered them.

Why would I lowercase an email address or username?

Many systems treat these case-insensitively, so converting to lowercase first gives a consistent form that matches reliably during lookups and comparisons.

Can I get my original capitalisation back after lowercasing?

No. The original mix of upper and lower case is not stored, so it cannot be reconstructed from the lowercase result. Save a copy beforehand if you need it.

Is the text I enter kept private?

Yes. The conversion runs in your browser, so the text you type is never sent to or stored on a server.

Related tools