Capitalize Words

Capitalize the first letter of every word.

Text Tools

How to Use Capitalize Words

  1. 1Paste your text in the input area
  2. 2Each word is capitalized in real time
  3. 3Copy or download the result

About Capitalize Words

The Capitalize Text tool capitalizes the first letter of every word in your text, regardless of what type of word it is. This makes it ideal for formatting names, list items, column headers, product names, and other content where every word should start with a capital letter.

Unlike Title Case — which applies editorial style guide rules keeping articles and conjunctions lowercase — Capitalize always uppercases the first letter of every single word, including words like "and", "the", and "of". It works on multilingual text and handles Unicode characters correctly.

Conversion happens in real time as you type, with no need to click a button. All processing is done locally in your browser, so your text is never sent to any server.

Key Features of Capitalize Words

  • Capitalizes the first letter of every word without exception
  • Instant real-time conversion as you type
  • Handles Unicode characters including accented letters correctly
  • Works for multilingual text in any language with capitalization
  • One-click copy button for the converted result
  • Download output as a plain .txt file
  • Preserves spacing, line breaks, and punctuation
  • Runs entirely in-browser with no server transmission

Examples

Format a list of product names for a data table

Capitalize every word in a list of product names to ensure consistent column display.

Input

wireless mouse
bluetooth keyboard
usb-c hub

Output

Wireless Mouse
Bluetooth Keyboard
Usb-C Hub

Capitalize a person's full name entered in lowercase

Convert a name entered in lowercase (common with mobile keyboards) to properly capitalized form.

Input

jane marie doe

Output

Jane Marie Doe

Common Use Cases

  • Formatting product names in e-commerce catalogs and data tables
  • Capitalizing column headers before exporting spreadsheet data
  • Standardizing the display of person names from user input forms
  • Formatting list items in presentations or structured documents
  • Creating consistently capitalized database display values
  • Quick cleanup of copy-pasted content with inconsistent capitalization

Troubleshooting

Expecting "the", "and", and "of" to stay lowercase like in a book title

Solution

This tool capitalizes every word without exception. If you need editorial title case where articles and conjunctions stay lowercase, use the Title Case Converter instead.

Hyphenated words only capitalize the first part

Solution

Hyphenated compound words like "usb-c" become "Usb-C" because each hyphen-separated segment is treated as a separate word boundary. This is the correct behavior for full word capitalization.

Numbers at the start of a "word" cause unexpected output

Solution

A word starting with a digit (like "3d") will have the digit left unchanged and the following letter will be the first capitalizable character: "3d" → "3d". This is standard JavaScript behavior.

Frequently Asked Questions

What is the difference between Capitalize and Title Case?

Capitalize uppercases the first letter of every word without exception. Title Case applies editorial style guide rules where small words like "and", "the", "in", and "of" stay lowercase unless they appear first or last. Use Capitalize for labels and names; use Title Case for publication-style headings.

Does it handle accented and non-English characters?

Yes. The tool uses Unicode-aware string operations, so it correctly capitalizes accented first letters like é→É, ü→Ü, and ñ→Ñ, as well as characters from other Latin-script languages.

What happens to words that are already capitalized?

Only the first letter of each word is changed. The rest of the word is left as-is. So "ALL-CAPS" becomes "ALL-CAPS" (the A was already capital, and the remaining letters are not touched). If you want proper word case, use Sentence Case or lowercase the text first.

Is there a limit on how much text I can capitalize?

No. The tool processes text entirely in your browser with no server round-trip, so there is no character limit. Large documents with thousands of words convert instantly.

Does it preserve line breaks and paragraph structure?

Yes. Only the case of individual word-starting letters is changed. All newlines, blank lines, spaces, and punctuation remain exactly as they were in the original text.

Why does "usb-c" become "Usb-C" and not "USB-C"?

Capitalize only changes the very first letter of each hyphen-separated segment to uppercase. It does not know that "USB" is an acronym. For acronyms and special formatting, manual editing or a custom regex replace is needed after capitalization.

Is my text sent to a server?

No. All conversion runs locally in your browser using JavaScript. Your text is never uploaded, stored, or transmitted to any server or third-party service.

How is this different from pressing Shift at the start of each word?

This tool processes your entire text automatically in one operation, capitalizing every word at once. Manually pressing Shift for every word in a long document would be tedious and error-prone — this tool saves that effort instantly.