camelCase Converter

Turn phrases into camelCase names. The first word is lowercase, every later word starts with a capital, and spaces are removed.

0 words · 0 characters

Example

Before
user first name
shipping-address-line
ORDER_TOTAL
After
userFirstName
shippingAddressLine
orderTotal

Where camelCase is used

camelCase is the usual style for variables and functions in JavaScript, Java, and Swift, and for keys in many JSON APIs.

One name per line

Each line is converted separately, so you can paste a whole list at once. Input that is already in snake_case, kebab-case, PascalCase, or CONSTANT_CASE is split into words correctly first.