Aa
TextCaseConverter

Title Case Converter

Convert text to Title Case where every word starts with a capital letter.

Advertisement
Words: 0Characters: 0Characters (no spaces): 0Sentences: 0Lines: 0
Advertisement

What is Title Case?

Title Case capitalizes the first letter of every word in a string. It is the standard format for book titles, article headlines, movie names, and page headings across most English-language style guides.

Example
hello world from meHello World From Me

When to Use Title Case

✓ Use it for

Use Title Case for article headlines, book titles, product names, H1/H2 page headings, and navigation links where each item deserves visual emphasis.

✗ Avoid it for

Do not use Title Case for body paragraph text, captions, or long descriptive sentences — it makes prose harder to read and looks unnatural at length.

Industry Standard

The Chicago Manual of Style (CMOS) and APA Style both prescribe Title Case for headings and titles, though they differ slightly on which words to capitalize (articles, prepositions). Our converter applies a universal Title Case rule capitalizing all words.

How to Use This Title Case Converter

  1. Paste or type your text into the Input Text box on the left.
  2. The output is converted to Title Case instantly on the right.
  3. Click Copy to copy the result to your clipboard.
  4. Use Clear to reset and convert new text.

Title Case in Programming Languages

JavaScriptstr.replace(/\b\w/g, c => c.toUpperCase())
Pythonstr.title()
PHPucwords(strtolower($str))
Rubystr.split.map(&:capitalize).join(' ')

Frequently Asked Questions

Is this Title Case converter free?

Yes, completely free — no signup, no account, no limits.

Does my text get stored or sent anywhere?

No. All conversions happen entirely in your browser using JavaScript. Your text never leaves your device and is never sent to any server.

When should I use Title Case?

Use Title Case for article headlines, book titles, product names, H1/H2 page headings, and navigation links where each item deserves visual emphasis.

Expert tip

Strict AP and CMOS Title Case rules say short prepositions (of, in, on, at), articles (a, an, the), and coordinating conjunctions (and, but, or) should remain lowercase unless they are the first word. Our tool applies simplified Title Case — adjust manually for strict style guide compliance.

All Text Case Converters

Advertisement