Title Case Converter
Convert text to Title Case by capitalizing the first letter of each word.
Input
Convert to
Output
Private by design
This conversion runs entirely in your browser. Your text is not sent to a server.
Tip
Passwords, API keys, and some identifiers are case-sensitive. Convert them only when you intend to change the value.
How to convert with Title Case Converter
Paste or type your text in the input box.
Watch the output update instantly — nothing is uploaded.
Pick another case style to open that converter with the same text.
Copy the result, or use it as the next input.
When should you use it?
Writing
Soften headlines, notes, and chat so the copy reads as normal sentences.
Programming
Match identifier conventions in code, configs, and APIs.
URLs
Prepare hostnames, paths, slugs, and CSS class names.
Data
Normalize names, tags, and imported rows to a single case.
About Title Case conversion
Title Case capitalizes the first letter of each word. The public URL stays /tools/capitalize — we do not rename shipped paths. Small words like “of” and “the” are still capitalized here; this is not Chicago-style headline casing with a stop-word list.
Worked example: “the quick brown fox” becomes “The Quick Brown Fox.” Use Sentence case for prose. Use CONSTANT_CASE or camelCase for code. Accents are preserved.
Related: Sentence case, UPPERCASE, kebab-case for URLs. Nothing is uploaded. Convert to keeps input while you switch pages.
Ads and inbound links use /tools/capitalize on purpose. If you needed AP style (lowercase “and”, “of”), fix those words by hand. Slugify is for URL-safe strings with accent folding, not for magazine titles. Close the tab to drop the headline draft.
Editorial style guides still win. This page is a blunt capitalize-each-word helper.
Title Case Converter examples
Headline
Sentence
Identifier
Case style comparison
| Style | Example | Typical use |
|---|---|---|
| lowercase | hello world example | Soft copy, tags, and normalizing user input |
| UPPERCASE | HELLO WORLD EXAMPLE | Headings, acronyms, and short labels |
| Sentence case | Hello world example | Prose, captions, and readable paragraphs |
| Title Case | Hello World Example | Titles, headlines, and proper names |
| camelCase | helloWorldExample | JavaScript variables and object keys |
| PascalCase | HelloWorldExample | Types, classes, and React components |
| snake_case | hello_world_example | Python, APIs, and database columns |
| kebab-case | hello-world-example | URLs, CSS classes, and file names |
| CONSTANT_CASE | HELLO_WORLD_EXAMPLE | Env vars, constants, and enum names |
Title Case Converter FAQ
The shipped path stays /tools/capitalize so ads and inbound links do not break. The page capitalizes the first letter of each word. Small words like “of” and “the” are still capitalized — this is not Chicago-style headline casing with a stop-word list. Example: “the quick brown fox” becomes “The Quick Brown Fox.”
No. Use camelCase or PascalCase for identifiers. Use Sentence case for prose. Accents are preserved.
No. Title Case runs in this tab. Convert to keeps input. Related: Sentence case, UPPERCASE, kebab-case for URLs.
No. Small words like of and the are still capitalized. Ads and inbound links keep /tools/capitalize. Fix AP-style stop words by hand. Slugify is for URL-safe strings with accent folding, not magazine titles. Close the tab to drop the headline draft. Nothing is uploaded.