Lower Case Converter
Use the CaseSwitch Lower Case Converter to normalize shouting caps, mixed titles, or inconsistent tags into all-lowercase letters. Paste the string, copy the result. This is the cleanup step before slugs, tags, and case-insensitive keys — not the last step before publishing English prose. Conversion runs in this browser.
Written by the CaseSwitch editorial team. We maintain these tools in the browser so drafts, keys, and images stay on your device.
Last reviewed: 30 August 2026
Processed locally in your browser. Nothing is sent to a server.
Paste or type text to convert. Output stays empty until there is input.
Character count: 0 · Word count: 0 · Line count: 0
Examples
Normalize a loud sentence
Input
THIS IS LOUD TEXT
Output
this is loud text
Tags and identifiers
Input
MY-TAG-NAME
Output
my-tag-name
Product name flattened
Input
iPhone 16 Pro
Output
iphone 16 pro
Accents stay on the letter
Input
déjà VU
Output
déjà vu
URL letters become lowercase
Input
https://CaseSwitch.net/Tools
Output
https://caseswitch.net/tools
How to use
- Paste the tags, column, or paragraph you want in lowercase.
- If you actually need readable sentences next, copy the result into the Sentence Case Converter instead of publishing the all-lowercase string.
- Copy the lowercase output.
What this tool is for
Lower case maps every letter to its small form. It is the normalize step before generating slugs, tags, CSS class names, or search keys that must not depend on how someone typed the original phrase. The output is a uniform small-letter string. English still needs sentence capitals before you publish a paragraph; this tool does not add those.
How it works
JavaScript’s toLowerCase() is applied to the whole string (Unicode default mapping). Punctuation and digits are unchanged. Spaces and line breaks stay. There is no sentence detection and no “first letter stays capital” rule — that is sentence case, a different converter.
When to use it
Preparing tags, normalizing CSV columns, turning a headline into input for a slug generator, lowercasing identifiers before a further snake_case or kebab-case conversion, and calming an accidental Caps Lock paragraph when you do not need sentence capitals yet. Also useful when two systems disagree about case and you need a single canonical form for comparison.
When not to use it
Do not lowercase a finished article and ship it — English still needs sentence capitals. Do not lowercase brand names in customer-facing copy. Do not lowercase a live URL path if the server is case-sensitive. Turkish dotted and dotless I should be previewed; this mapping is not a Turkish locale conversion.
How it compares to related tools
Sentence case lowercases first, then puts capitals back at sentence starts — use that when the destination is a readable paragraph. The Slug Generator lowercases and also hyphenates and strips punctuation for URLs. Title case is the opposite direction for headings. Upper case is the inverse map. Use this page when you want a uniform small-letter string, not prose.
Common mistakes
Lowercasing legal party names in a contract. Feeding the output straight into a title field. Comparing a lowercased URL with a case-sensitive server path. Assuming “Tool” and “tool” needed this page for a word count — the Word Frequency Counter already folds case when it counts.
Lowercase in URLs versus on-page titles
Search engines and humans expect public URL slugs in lowercase kebab-case. The visible H1 can still be title case or sentence case. Lowercase the slug, not the heading users read. If you only needed hyphens and stripped punctuation, skip this page and use the Slug Generator; if you only needed small letters and wanted to keep punctuation, stay here.
What stays the same
Digits, punctuation, emoji, and whitespace are not removed. Empty input stays empty. Multiple lines are lowercased in place. German ß has no single-character lowercase change (it is already lowercase); uppercasing it is the lossy direction (SS).
Frequently asked questions
Is lowercase better for SEO than title case?+
In visible titles, title case or sentence case is what users read. In URLs, lowercase slugs are the standard. Convert the slug, not the on-page heading, to lowercase.
Does this change characters outside English?+
It uses JavaScript’s toLowerCase(), which handles many Latin, Greek, and Cyrillic letters. Always preview non-English text, especially Turkish dotted and dotless I.
Should I lowercase a paragraph before publishing?+
No. Lowercase is a normalize step. For readable English, follow with sentence case and then restore names and brands.
Does punctuation or spacing change?+
No. Only letter case changes. Extra spaces are not collapsed; use the Whitespace Remover if you need that.
Is my text uploaded?+
No. Lowercasing runs in this browser. The string is not sent to a server for conversion.
Does CaseSwitch upload this text?+
No. Conversion, cleaning, and counting for this page run in your browser. Drafts are not sent to CaseSwitch for processing.
Related guides
Read our original articles on this topic.
Related tools
Upper Case Converter
Warning banners, warehouse and packing labels, form section names that a design system specifies in caps, crossword-style puzzles, matching a legacy field that stores values in uppercase, and preparing a short line that must be visible at a distance. Keep the string short. A five-word label in caps can work; a paragraph will not.
Sentence Case Converter
Use it on emails typed with Caps Lock, meeting notes from a phone, support tickets, OCR from a PDF, and blog drafts that went through an uppercase filter. It is the right tool when the destination is a paragraph, a message, or a UI sentence — not a headline. Product copy, error messages, and documentation body text almost always belong in sentence case because it is easier to scan than a wall of capitals.
Capitalized Case Converter
Button and menu labels in a design system that specifies Start Case (“Save Changes”), spreadsheet column headers, form legends, short display names, and feature lists copied in lowercase. It is a fast way to make every word look intentional when title case would leave “of” and “the” small and you do not want that.
Title Case Converter
Format blog post titles, slide decks, README headings, newsletter subject lines that your brand treats as titles, documentation section names, and book or article titles in English. It is faster than retouching twenty headings by hand after a draft in sentence case. Convert the heading list; leave the article body in sentence case.
Inverse Case Converter
Rescuing a paragraph typed with Caps Lock and Shift, reversing alternating-case jokes, checking how a UI looks with inverted labels in a fixture, and fixing a short paste before you apply sentence case for readable prose.