Converter Web ToolsConverter WebTools

Lower Camel Case Converter

Convert text to lowerCamelCase instantly in your browser.

Input
Output
Share Link
Settings

What is lowerCamelCase?

lowerCamelCase (also just "camelCase") joins words with no spaces, lowercases the first word, and capitalizes the first letter of each following word — like firstName or totalCount. It is the standard naming style for variables, functions and object properties in JavaScript, Java and many other languages. This tool converts any text to camelCase instantly in your browser.

How to use

  1. Paste your text into the input box.
  2. The lowerCamelCase result appears instantly.
  3. Click Copy to use it.

Examples

InputcamelCase
first namefirstName
total order counttotalOrderCount
user_iduserId
HTML parserhtmlParser

Common uses

  • Naming variables and functions in JavaScript, Java, etc.
  • Object property and JSON key names.
  • Converting labels or database columns into code identifiers.

Frequently asked questions

What is the difference from PascalCase?
camelCase lowercases the first word (firstName); PascalCase capitalizes it (FirstName).
What happens to separators?
Spaces, underscores and hyphens are removed and used as word boundaries.
Where is camelCase used?
Most commonly for variables, functions and JSON keys.