Free Case Converter

Convert text between UPPERCASE, lowercase, Title Case, Sentence case, and more. Paste your text and click a button.

Input
0 characters
Output
0 characters

Text Case Reference

CaseExampleUsed For
Sentence caseThe quick brown foxBody text, emails, most writing
lowercasethe quick brown foxCSS classes, URLs, tags
UPPERCASETHE QUICK BROWN FOXAcronyms, emphasis, headings
Title CaseThe Quick Brown FoxHeadlines, book titles, headings
camelCasetheQuickBrownFoxJavaScript variables, Java methods
PascalCaseTheQuickBrownFoxClass names, components
snake_casethe_quick_brown_foxPython variables, database columns
kebab-casethe-quick-brown-foxURLs, CSS classes, file names

Frequently Asked Questions

What is title case?

Title case capitalizes the first letter of every major word in a sentence. Minor words like "a", "an", "the", "and", "but", "or", "for", "nor", "in", "on", "at", "to", "by" are kept lowercase unless they are the first or last word. Title case is used for headings, article titles, book titles, and email subject lines.

When should I use sentence case vs title case?

Sentence case (only the first word capitalized) is used for body text, most email subject lines, and casual headings. Title case is used for formal titles, book names, article headlines, and presentation slides. Google and Apple use sentence case in their interfaces. Most modern style guides recommend sentence case for a clean, approachable look.

What is camelCase used for?

camelCase is a naming convention used primarily in programming where the first word is lowercase and subsequent words start with a capital letter (e.g., firstName, getUserData). It is standard in JavaScript, Java, and many other programming languages for variable and function names.