lowercase Converter

convert any text to all lowercase. useful for cleaning shouty text, urls, filenames, and consistent formatting.

Input
Output

What is lowercase?

lowercase converts every letter to its small form. It's the opposite of UPPERCASE and the natural state of most modern body text.

While most prose mixes upper and lower case for readability, full lowercase is common in code (variable names), URLs (path components), filenames, hashtags, and a certain conversational online style.

When to use lowercase

  • Cleaning shouty text — recovering body prose from an all-caps copy-paste.
  • URLs and slugs — most web URLs use lowercase for case-insensitive consistency.
  • Filenames — many operating systems are case-sensitive; lowercase avoids conflicts.
  • Email addresses — though technically the local part can be case-sensitive, most servers normalize.
  • Hashtags and usernames on platforms where case is preserved but rendered uniformly.
  • Stylistic prose — some writers and brands use lowercase as a tonal choice (bell hooks, danah boyd).

How lowercase conversion works

  1. Every letter is converted to its lowercase form using the browser's Unicode-aware toLocaleLowerCase() function.
  2. Non-letter characters pass through unchanged.
  3. Locale rules apply: Turkish I → ı, German capital ẞ → ß.

Worked examples

Input lowercase
HELLO WORLD hello world
This Has Some CapItaLs this has some capitals
SHOUTING IS RUDE shouting is rude

Related case formats

Need more conversion options?

Open the full converter →