Capitalization Is Not Just Aesthetic
Text case — whether and which words start with capital letters — affects readability, professionalism, and SEO. A blog post with inconsistent heading capitalization looks careless. A user interface where button labels mix Title Case and sentence case looks unpolished. An email with every word capitalized looks like spam.
Most people know uppercase (ALL CAPS) and lowercase, but the rules for title case and sentence case trip up even experienced writers. Here is a clear breakdown of every case type and when to use each.
The Five Main Cases
UPPERCASE — Every character capitalized. Used for: emphasis, acronyms, legal terms (TERMS AND CONDITIONS), certain headlines in tabloid journalism. Overuse reads as shouting.
lowercase — No capitalization. Used for: casual digital communication, code (variable names, URLs), intentional stylistic choice in branding (e.g. "adidas" or "bell hooks" who chose lowercase for her name).
Title Case — Most significant words capitalized. Used for: article headlines, book titles, movie titles, product names, formal headings in documents. The rules are more complicated than most people know.
Sentence case — Only the first word and proper nouns capitalized. Used for: most body text, emails, blog post body paragraphs, many UI labels in modern software (Apple uses sentence case throughout iOS).
camelCase — No spaces, each new word starts with a capital: thisIsCamelCase. Used for: JavaScript variable names, function names, object keys. TypeScript and JavaScript both commonly use this convention.
PascalCase — Like camelCase but the first word is also capitalized: ThisIsPascalCase. Used for: class names in object-oriented programming, React component names, TypeScript interfaces.
snake_case — Words separated by underscores, all lowercase: this_is_snake_case. Used for: Python variable names, database column names, file names in some conventions.
kebab-case — Words separated by hyphens, all lowercase: this-is-kebab-case. Used for: CSS class names, HTML data attributes, URL slugs, file names.
The Rules of Title Case (They Are More Complex Than You Think)
Most style guides agree on the basics: capitalize the first and last word of a title, and capitalize all "major" words. The disagreement is on what counts as "major."
The most widely used rule: capitalize all words except:
- Articles (a, an, the)
- Short coordinating conjunctions (and, but, or, nor, for, yet, so)
- Short prepositions (in, on, at, to, by, up, of, off, out)
- The word "to" in infinitives
Exception: always capitalize the first and last word of the title, regardless of what it is.
So: "The Lord of the Rings" — "of" and "the" are lowercase, but "The" at the start is capitalized as the first word.
Different style guides (AP, APA, Chicago, MLA) have slightly different rules about which prepositions to capitalize. For most purposes, the rule above is close enough.
Sentence Case: Simpler Than It Looks
Sentence case follows the same rules as a normal sentence: capitalize the first word and all proper nouns (names of people, places, brands, products). Everything else is lowercase.
"The best free online tools for writers in 2026" — sentence case, correct.
"The Best Free Online Tools For Writers In 2026" — title case, also correct for a headline.
"the best free online tools for writers in 2026" — all lowercase, might be intentional for a specific brand voice.
Modern SaaS products and tech companies increasingly use sentence case in their UIs because it feels more conversational and less formal. Older enterprise software and formal documents still tend toward title case for headings.
When Consistent Case Matters Most
Navigation menus: Pick one case style and apply it to every item. Mixing "Home," "About Us," "our products," and "CONTACT" looks amateurish.
Button labels: Use sentence case or title case consistently. "Submit form" and "Save Changes" in the same interface is inconsistent.
Email subject lines: Sentence case is standard for professional email. Title case reads as slightly more formal or marketing-oriented.
SEO headlines: Most SEO practitioners use title case for H1 tags and sentence case for body copy. Consistency matters more than the specific choice.
How to Use the Toobits Case Converter
Paste your text and click the case style you need: UPPERCASE, lowercase, Title Case, Sentence case, or camelCase. The conversion is instant. Useful for fixing improperly formatted data exported from a database, normalizing inconsistent spreadsheet entries, converting code between naming conventions, or applying style guide requirements quickly.