Skip to content
HandfulTools

Case Converter

Fix text typed with Caps Lock on, turn a list of names into Title Case, or convert labels into camelCase, snake_case or kebab-case identifiers for code — instantly.

Runs in your browser

Loading…

How to use

  1. Paste your text.
  2. Pick the case you need.
  3. Copy the converted text from the output box.

How it works

Title Case capitalises the first letter of each word but keeps short words such as “and”, “of” and “the” in lowercase unless they start the title, following common English style guides. Sentence case lowercases everything, then capitalises the first letter of each sentence and the pronoun “I”.

Programming cases (camelCase, PascalCase, snake_case, kebab-case, CONSTANT_CASE) split the text into words at spaces, punctuation and existing case boundaries, so “userIDNumber” and “user id number” both become “user_id_number”. Each line is converted separately, so you can convert a whole list at once.

Examples

Caps Lock accident
“tHE QUICK BROWN FOX” → Sentence case → “The quick brown fox”.
Variable names
“Order total amount” → camelCase “orderTotalAmount”, snake_case “order_total_amount”, kebab-case “order-total-amount”.

Common uses

  • Fixing text typed with Caps Lock
  • Formatting headlines and titles
  • Creating variable, column and CSS class names
  • Normalising product names and lists

Privacy & security

This tool runs entirely in your browser. Your files and text are never uploaded to our servers — processing happens on your device and results are created locally. How each tool handles files

Frequently asked questions

Does it work with accented letters?

Yes. Conversion uses Unicode-aware case mapping, so “élève” becomes “ÉLÈVE” and “straße” is handled correctly.

Which Title Case rules are used?

A simple, widely used rule: capitalise every word except short articles, conjunctions and prepositions (a, an, the, and, or, of, in, on, to…) unless they are the first word.

Last updated: