Case Converter
What the Case Converter does
The Case Converter reformats any block of text into UPPERCASE, lowercase, Title Case, Sentence case, or camelCase with one click, so you don't have to retype something just because the capitalization is wrong. It's a small fix, but a common one — pasted text often arrives in the wrong case for the context you need it in.
How to use it
- Paste or type your text into the box.
- Click the case format you need: UPPERCASE, lowercase, Title Case, Sentence case, or camelCase.
- Use Copy result to copy the converted text to your clipboard.
Common uses
- Converting a heading someone typed in lowercase into proper Title Case.
- Turning a variable name or label into camelCase for code.
- Fixing text that was accidentally typed with Caps Lock on.
- Formatting a product name or headline consistently across a document.
- Cleaning up scraped or copy-pasted data before importing it into a spreadsheet.
Good to know
Title Case here capitalizes the first letter of each significant word, which works well for headlines but doesn't apply style-guide exceptions for short words like "of" or "the" — for editorial-grade title casing you may still want a final manual pass. camelCase strips spaces and punctuation and capitalizes each subsequent word, which is standard for JavaScript variable and function names but not for CSS or Python, which typically use kebab-case or snake_case instead.
Consistent capitalization matters more than it might seem for readability and professionalism — a heading in inconsistent case, or a paragraph that arrived in ALL CAPS from an old system export, reads as noticeably unpolished even when the actual content is fine. Running text through a case converter is often the fastest fix for content pulled from legacy systems, old spreadsheets, or someone else's typing habits.
Frequently asked questions
Title Case capitalizes the first letter of every major word, while Sentence case only capitalizes the first letter of the sentence.
Yes, the camelCase option removes spaces and capitalizes each word after the first, which is a common variable naming style in JavaScript.