camelCase Converter
Convert text to camelCase for variable and function names.
Private ● Runs entirely in your browser Your text never leaves your device.No account required.No data uploaded.Nothing stored unless you choose to save it.What is camelCase?
camelCase joins words with no separators, lowercasing the first word and capitalizing the first letter of each word after it: "user profile image" becomes "userProfileImage". It is widely used for variable and function names in JavaScript, TypeScript, Java, and Swift.
How is camelCase different from PascalCase?
In camelCase the first letter is lowercase ("myValue"); in PascalCase every word is capitalized including the first ("MyValue"). camelCase is typical for variables and functions, while PascalCase is typical for classes and components.
How does the converter split my text into words?
It treats spaces, hyphens, underscores, and other non-alphanumeric characters as word boundaries, and also splits existing camelCase humps. So "first-name", "first_name", and "First Name" all become "firstName".
What happens with multiple lines?
Each line is converted independently, so a list of phrases becomes a list of camelCase identifiers, one per line. Blank lines are preserved.