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 ToolWhy 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
- Paste or type your text into the input box.
- The converted result updates live as you type.
- 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.