Et
EditText.app

camelCase Converter

Convert text to camelCase for JavaScript variables and JSON keys. Free online camelCase converter, no signup required.

🔒 Your text stays in your browser — nothing is sent to our servers
Input
0Characters
0No spaces
0Words
0Sentences
0Lines
< 1 minRead time
Result
How to Use

Three steps to get started

1

Paste your text

Enter text separated by spaces, underscores, hyphens, or any delimiter.

2

Converts to camelCase

First word lowercased, each subsequent word capitalized, all separators removed.

3

Copy the identifier

Click Copy and paste directly into your code editor.

About This Tool

camelCase: the standard for JavaScript and JSON

camelCase is the dominant naming convention for variables, functions, and properties in JavaScript, TypeScript, Java, Swift, and many other languages. The first word is fully lowercase; each subsequent word starts with a capital letter. All whitespace and separator characters are removed.

Examples of camelCase in practice:

  • firstName, lastName, emailAddress — object properties
  • getUserById, handleSubmit, calculateTotal — function names
  • isLoading, hasError, shouldRender — boolean variables
  • apiBaseUrl, maxRetryCount — configuration values

The converter accepts input in any format — plain English phrases, snake_case, kebab-case, PascalCase, or mixed delimiters — and produces clean camelCase output. It intelligently splits on word boundaries, including transitions from lowercase to uppercase in existing camelCase or PascalCase input.

FAQ

Frequently Asked Questions

Related Tools