Lodash Capitalize Converter

Reproduce lodash's _.capitalize exactly: the first character is uppercased and every other character is lowercased. Handy when you want to match lodash output without pulling in the library.

Open the Tool

Why use Lodash Capitalize Converter?

Matches lodash _.capitalize semantics precisely

Unicode-safe: works on multi-code-unit characters

Live preview as you type or paste

100% in-browser - nothing is sent anywhere

How it works

  1. Paste or type your text into the input box.
  2. The converted result updates live as you type.
  3. Copy or download the output when it looks right.

FAQ

What does lodash's capitalize do?

_.capitalize('FRED') returns 'Fred' and _.capitalize('foo BAR') returns 'Foo bar' - first character up, everything after lowercased, even mid-sentence.