lower case
Converts every character in your text to lowercase instantly. Supports up to 50,000 characters.
General Tools
Input Text
0 / 50,000
Converted Text
Result will appear here…
About
What is lower case?
Lower case converts every alphabetic character in a string to its small form. Numbers, punctuation, and symbols are left unchanged. It is the default state of most digital text and is used extensively across programming, URLs, email addresses, and everyday writing where capitalisation carries no special meaning.
Example
Input
Hello World. THIS IS A TEST.
Output
hello world. this is a test.
Usage
When to use lower case?
URLs & slugs
URLs are case-insensitive in practice but lowercase is the universal convention - /about-us not /About-Us.
Email addresses
Email addresses are technically case-insensitive but always written in lowercase to avoid confusion.
CSS class names
BEM, utility-first (Tailwind), and most CSS naming conventions require all-lowercase class names.
Normalising input
Before comparing or storing user input - usernames, tags, search queries - lowercase normalisation prevents duplicate entries.
Try More