Text Tools & UtilitiesSpecialized Version
📝

Capitalize Text Converter

Capitalize each word

Capitalize Text Converter (Title Case)

Transform your text to Title Case where each word begins with a capital letter. Our capitalize text converter is perfect for headlines, book titles, proper names, and any text requiring professional capitalization.

Title Case Capitalization Rules

| Rule | Example | Notes | First word"The quick fox"Always capitalize Nouns"Dogs and Cats"Always capitalize Verbs"Run and Jump"Always capitalize Adjectives"Big Blue Sky"Always capitalize Articles"A Day in the Life"Often lowercase Prepositions"Out of Time"Short ones lowercase | Conjunctions | "And, But, Or" | Often lowercase |

Different Title Case Styles

``javascript function capitalizeText(text, style = 'simple') { const lowercaseWords = ['a', 'an', 'the', 'and', 'but', 'or', 'for', 'nor', 'on', 'at', 'to', 'by', 'in', 'of'];

if (style === 'simple') { // Simple: capitalize every word return text.replace(/\b\w/g, char => char.toUpperCase()); }

if (style === 'ap') { // AP Style: lowercase articles/prepositions except first/last word return text.split(' ').map((word, index, arr) => { if (index === 0 || index === arr.length - 1) { return word.charAt(0).toUpperCase() + word.slice(1).toLowerCase(); } if (lowercaseWords.includes(word.toLowerCase())) { return word.toLowerCase(); } return word.charAt(0).toUpperCase() + word.slice(1).toLowerCase(); }).join(' '); }

return text; }

console.log(capitalizeText("the lord of the rings", "ap")); // Output: "The Lord of the Rings" ``

When to Use Title Case

Title case is appropriate for book titles, article headlines, movie names, song titles, and formal headings. For academic papers, check your style guide—APA, MLA, and Chicago have different capitalization rules. Email subject lines and presentation titles also benefit from title case for a professional appearance.

Headline Capitalization Tools

Our simple capitalizer capitalizes every word, which works for most informal uses. For publishing, consider AP style (lowercase short prepositions) or Chicago style (capitalize prepositions of 5+ letters). The key is consistency within your document or publication.

Frequently Asked Questions

What is title case?

Title case capitalizes the first letter of each word (or most words, depending on style). Example: "The Quick Brown Fox Jumps Over the Lazy Dog". It is the standard format for headlines, book titles, and formal headings.

Which words should not be capitalized in titles?

In formal title case (AP/Chicago style), articles (a, an, the), short prepositions (of, in, to, for), and coordinating conjunctions (and, but, or) are lowercase unless they start or end the title.

What is the difference between title case and sentence case?

Title case capitalizes most or all words: "The Quick Brown Fox". Sentence case only capitalizes the first word and proper nouns: "The quick brown fox". Use title case for headlines, sentence case for body text.

Related Tools

Explore other tools you might find useful:

Related Calculators