Convert text to camelCase — and see all four developer case formats simultaneously: camelCase, PascalCase, snake_case, and kebab-case.
Fill in the fields or paste your input text. Click Sample to load an example and see the tool in action.
Press the main button to process your input. Results appear instantly — all processing runs in your browser, no upload needed.
Check the output panel. Any errors are shown in a red bar with a clear description so you can fix the input quickly.
Click Copy to copy to clipboard, or Download to save the result as a file.
camelCase keeps the first letter lowercase, then capitalises the first letter of each subsequent word, removing spaces and separators. "user login count" becomes "userLoginCount".
Use camelCase for variable names and function names in JavaScript, TypeScript, Java, Swift, Dart, and most other languages. It is also used for JSON keys in most APIs.
camelCase joins words by capitalising (userLoginCount). snake_case uses underscores (user_login_count). camelCase is standard in JS/Java/Swift; snake_case is standard in Python, PHP variables, and SQL columns.
Acronyms in input (like "XML" or "URL") are treated as single words. "parse XML response" becomes "parseXmlResponse" in camelCase — each letter of the acronym is not capitalised individually.
Yes — each line is converted independently. Paste a list of identifiers one per line and every line gets converted. This is ideal for bulk renaming of variables or database columns.
Yes. All conversion runs locally in your browser. Nothing is sent to any server.