Case Converter

Change the capitalisation of your text without retyping it. Twelve cases, including proper editorial title case and the programming conventions — and your original is always kept.

0 words · 0 characters

Choose a case

Original text

Your converted text appears here.

0 words · 0 characters

What each case looks like

Sentence case
Sentence case looks like this.
lowercase
lowercase looks like this
UPPERCASE
UPPERCASE LOOKS LIKE THIS
Capitalized Case
Capitalized Case Looks Like This
Title Case
Title Case Looks like This
camelCase
camelCaseLooksLikeThis
PascalCase
PascalCaseLooksLikeThis
snake_case
snake_case_looks_like_this
kebab-case
kebab-case-looks-like-this
CONSTANT_CASE
CONSTANT_CASE_LOOKS_LIKE_THIS
aLtErNaTiNg
aLtErNaTiNg LoOkS LiKe tHiS
iNVERSE cASE
iNVERSE cASE LOOKS LIKE THIS

Runs in your browser. Your text is never uploaded.

When each case is the right one

Sentence case is the default for prose, and increasingly for headlines too — most publications and product interfaces have moved to it because it reads faster.

Title Case belongs to book, film and article titles, and to publications whose style guide calls for it. The rule about short words is what separates it from simply capitalising everything.

UPPERCASE is for acronyms, and for emphasis in small doses. A whole paragraph of capitals is measurably slower to read, because the shapes of the words disappear.

lowercase suits hashtags, usernames, email addresses and anywhere case carries no meaning.

Fixing text that arrived in the wrong case

The common problem is a block of text typed with Caps Lock on. Converting it straight to lowercase loses the capital letters that should have stayed, so convert toSentence case instead: each sentence gets its capital back, and a standalone “I” is restored. Proper nouns still need a manual pass — no tool can know that “paris” is a city and not your dog.

If the text also arrived with double spaces or stray line breaks, run it through thetext cleaner first.

Frequently asked questions

What is the difference between Title Case and Capitalized Case?
Capitalized Case capitalises every word. Title Case follows editorial style: short joining words like “of”, “the” and “and” stay lowercase unless they open or close the title. “The Lord of the Rings” is title case; “The Lord Of The Rings” is capitalized case.
Can I undo a conversion?
Your original text stays in the box above and is never modified. Press “Original” to see it again, or pick a different case. Only “Use as input” replaces it, and that is a deliberate click.
Does it work with accented characters and other alphabets?
Yes. Case conversion is Unicode-aware, so “é” becomes “É”, and Greek, Cyrillic and other cased scripts convert correctly. Scripts without upper and lower case, such as Chinese or Arabic, are left as they are.
What is snake_case for?
Programming. snake_case, camelCase, PascalCase, kebab-case and CONSTANT_CASE are naming conventions for variables, files and URLs. kebab-case is also the usual style for web page slugs.