How To Convert Text To Lowercase
Learn what lowercase means, where lowercase text is required, and how to convert text to lowercase in one step.
Quick Answer
This tool will convert to lowercase and make text all lowercase in one step. It will also uncapitalize text: "HELLO World" becomes "hello world", turning every letter case to small letters. Numbers, spaces, and punctuation stay the same.
Try The Lowercase Converter →When Lowercase Is Required
Why normalize text to lowercase? Several systems expect lowercase by convention or by rule: email addresses, URL slugs, hashtags, CSS class names, and many code identifiers. To "normalize case" is a common step, and this case normalization lets you compare or de-duplicate strings without being tripped up by inconsistent capitalisation. It also helps "slug preparation" and shows how to normalize emails before storing them, since an address is the same regardless of the case it was typed in.
How The Conversion Works
The tool maps every uppercase letter to its lowercase form and leaves everything else unchanged: numbers, spaces, punctuation, and symbols all stay exactly as they are. For example, "HELLO WORLD! 123" becomes "hello world! 123".
This tool is free and runs online entirely in your browser. Your text stays on your device, protecting your privacy: nothing is uploaded to a server, and results appear instantly.
Examples
Normalizing an email. For example, "Jane.Doe@Example.com" becomes "jane.doe@example.com", so two sign-ups with different casing match as one account.
Shouty text calmed down. For example, "THIS IS URGENT" becomes "this is urgent", ready to re-case however you like.
Common Mistakes
Lowercase vs Other Case Styles
Lowercase is the simplest case style and the right choice when case consistency matters more than readability. The common alternatives are: sentence case for body text and UI labels where the first word is capitalised; Title Case for headings where every major word is capitalised; and camelCase or snake_case for code identifiers. Unlike these alternatives, plain lowercase makes no capitalization decisions: it is the most predictable option for normalisation, URL slugs, and string comparisons.
Related Tools
You May Also Need
You may also need
- Uppercase ConverterSwitch to uppercase when needed
- kebab-case ConverterLowercase first, then build a URL slug
Next steps
- Remove Duplicate LinesAfter lowercasing, collapse now-identical lines
Alternatives
- Uppercase ConverterConvert to uppercase instead
- Sentence Case ConverterKeep sentence capitalization rather than flattening all case