Case Converter

Convert any text between UPPERCASE, lowercase, Title Case, Sentence case, camelCase, snake_case and more - Instantly, locally.

0 characters · 0 words

Title Case Is Not One Thing

Editors argue about title case because the major style guides disagree. This tool uses the simple rule (capitalize every word); the guides are pickier:

  • AP style - Capitalize words of 4+ letters, plus first and last words. "How to Beat a Brute-Force Attack"
  • Chicago - Lowercase articles, prepositions and conjunctions regardless of length. "How to Beat a Brute-Force Attack" (same here, differs on "with", "from")
  • APA - Like Chicago, but capitalize any word of 4+ letters, including prepositions.

For the web, the practical answer: pick one style and be consistent - Google doesn't rank capitalization, but readers notice inconsistency. Most modern product UIs (and this site) have switched to sentence case entirely.

A Quick Reference

StyleExampleTypical use
Title CaseThe Quick Brown FoxHeadlines, book titles
Sentence caseThe quick brown foxBody copy, UI labels
camelCasetheQuickBrownFoxJavaScript variables
PascalCaseTheQuickBrownFoxClass names
snake_casethe_quick_brown_foxPython, databases
kebab-casethe-quick-brown-foxURLs, CSS classes

Why is this on a password site?

Habit, mostly - This tool shipped with the original PasswordGenerator.now and people kept using it. It pairs nicely with:

One security note: changing the case of a weak password does not make it strong. PASSWORD123 and password123 fall equally fast - See the strength checker, grab a truly random password, or learn what actually makes a password strong.

How to Use the Case Converter

1

Paste your text

The character and word counts update live.

2

Click a case style

Ten styles from UPPERCASE to kebab-case; the result updates instantly.

3

Copy the result

The converted text is ready for your document, code or URL slug.

Case Converter - FAQ

What's the difference between Title Case and Sentence case?
Title Case Capitalizes Every Word (headlines, book titles); Sentence case only capitalizes the first word and proper nouns (normal prose, most modern UI labels).
When should I use snake_case vs camelCase vs kebab-case?
Convention by ecosystem: snake_case in Python and SQL, camelCase in JavaScript and Java variables, PascalCase for class names, kebab-case in URLs and CSS classes. Consistency within a project matters more than the choice itself.
Does converting case change my text's meaning?
Only in case-sensitive contexts: URLs after the domain, passwords, and most programming identifiers treat different cases as different strings. That's also why changing a password's case doesn't make it stronger - Cracking tools try case variants automatically.

More questions about passwords and security? Browse the security guides.