Text case styles cheat sheet

September 2026

People argue about casing more than they admit. This page is the short version: what each style looks like, where it belongs, and which tool converts it.

Need a full write-up? See the complete guide to text case conventions. Need to convert text now? Use the caps to lowercase converter.

Quick comparison

StyleExampleUse forTool
lowercasehello worldNormalization, emails, CSS when forced lowercaseOpen
UPPERCASEHELLO WORLDAcronyms, shouting (usually avoid), some constantsOpen
Title CaseHello WorldHeadlines, book titles, UI labelsOpen
Sentence caseHello worldBody copy after caps-lock mistakesOpen
camelCasehelloWorldJavaScript variables and functionsOpen
PascalCaseHelloWorldClasses, React components, typesOpen
kebab-casehello-worldURL slugs, CSS classes, file namesOpen
snake_casehello_worldPython, Ruby, many database columnsOpen

Rules of thumb

  • Human-readable prose → sentence case or Title Case.
  • URLs and CSS → kebab-case (and lowercase).
  • JS variables → camelCase. Components → PascalCase.
  • Python / SQL-ish → snake_case.
  • ALL CAPS pasted from email → lowercase or sentence case, then edit proper nouns.

Related hubs

Case styles FAQ

Back to Learn

Related tools