Lower Camel Case Converter
Convert words and identifiers to lower camel case online, such as helloWorldExample, for variables, properties, and API fields. Read more
Convert text to lower camel case
Lower camel case joins words without separators, starts with a lowercase word, and capitalizes subsequent word boundaries. Hello world example becomes helloWorldExample.
It is also called camelCase or dromedary case and is widely used for variables, object properties, function names, JSON fields, and API parameters.
How to create camelCase
- Enter words separated by spaces, underscores, hyphens, or recognizable case boundaries.
- Convert the input.
- Check acronyms, numbers, and existing identifiers before copying the result.
Case conversion libraries must infer word boundaries. Inputs containing abbreviations such as HTTP, version numbers, or domain-specific capitalization may need manual adjustment.
Lower camel case FAQ
What is the difference from PascalCase?
Upper Camel Case capitalizes the first word as well; lower camel case begins with lowercase.
Are separators preserved?
No. Recognized separators define word boundaries and are removed from the output.
Is camelCase valid in every programming language?
Naming rules vary. Confirm reserved words, allowed Unicode characters, and leading-digit restrictions in the target language.