Skip to main content
HOMEText Tools
Title Case Converter

Title Case Converter

Input
Chars: 0
Preview

Waiting for text input...

Settings

General Settings

Title Case Converter — Capitalize Headlines

The Title Case Converter is an online layout and grammar utility designed to standardize character capitalization across headings, subject lines, and titles. Popular for formatting blog titles, organizing email subject lines, polishing video titles on YouTube or TikTok, and designing headers for user descriptions on Instagram and Twitter/X, this generator analyzes word boundaries and applies capitalization rules client-side.

How the Casing and boundary regex Logic Works

The formatting script executes locally in the client browser, running JavaScript regex replacements and string manipulation based on the chosen case mode (defined in the title-case case in transformers.ts):

  1. Title Case (title): Converts the entire input string to lowercase and then identifies the first letter of every word using word boundary matching. It capitalizes those specific letters using a regex replace loop:
    • result.toLowerCase().replace(/\b\w/g, (c) => c.toUpperCase()).
  2. Sentence Case (sentence): Converts the text to lowercase and capitalizes the first letter of each sentence:
    • result.toLowerCase().replace(/(^\s*\w|[.!?]\s*\w)/g, (c) => c.toUpperCase()).
  3. Camel Case (camel): Converts the string to lowercase and removes non-alphanumeric characters, capitalizing the letter immediately following the spaces or dividers:
    • result.toLowerCase().replace(/[^a-zA-Z0-9]+(.)/g, (_, c) => c.toUpperCase()).
  4. Inverse Case (inverse): Inverts the case of each character, turning uppercase letters to lowercase and vice versa.
  5. Alternating & Random Case: Formats strings with repeating character case patterns (e.g., alternating between lowercase and uppercase at odd/even indices).

Because these calculations run client-side, your input drafts remain private and secure.

Applications & Casing Guidelines

  • Headlines & Document Titles: Title case is the standard format for book titles, major sections of articles, and document headers, establishing a clean, balanced layout.
  • Social Media Bio Titles: Using title case for headings and itemized lists in your biography helps organize the layout and makes key terms stand out.
  • Coding Slug Conversion: Camel case is a standard naming convention in programming languages (like JavaScript and Java) for formatting variables and object keys.
  • Search Discoverability: Standardizing text casing ensures optimal indexing by search engine crawlers, as standard cased letters are matched directly to search queries.

Frequently Asked Questions

Common Queries

What is a title case converter?

It is an online utility that automatically capitalizes the first letter of every word in a text block, while converting all other letters to lowercase.

Where can I paste this formatted text?

You can paste the output directly into word processors, code editors, social posts, and biography fields on Instagram, TikTok, and Discord.

Can I convert text to sentence case?

Yes. Select the sentence case option in the settings panel. The tool will automatically capitalize the first letter of each sentence while leaving others lowercase.

Will using alternating case affect search indexing?

Yes. Alternating case (e.g., tItLe) makes words harder for search systems to match. Keep primary search terms in standard cased letters.

Is this tool free to use?

Yes. The generator is fully free, does not store or transmit any user inputs, and processes all character transformations locally inside your web browser.

  • sentence-case — Capitalize the first letter of each sentence in your text block.
  • uppercase-text — Convert all characters to uppercase capital letters instantly.
  • character-counter — Count visual characters, words, paragraphs, and raw byte sizes.