Home/camelCase Converter

camelCase Converter

Convert your text to camelCase for use in programming.

Examples

Inputhello world example
OutputhelloWorldExample
Inputget user name
OutputgetUserName

What is camelCase?

camelCase is a naming convention where the first word is lowercase and each subsequent word starts with a capital letter, with no spaces or separators. It gets its name from the 'humps' created by the capital letters, resembling a camel's back.

When to use camelCase

Use camelCase for JavaScript and TypeScript variable and function names, for Java method names and local variables, for JSON property keys in many API conventions, and for any programming context that follows camelCase conventions.