Got My Tools

Code Case Converter

Convert identifiers between camelCase, PascalCase, snake_case, kebab-case, CONSTANT_CASE, and dot.case.

camelCase

myVariableName

PascalCase

MyVariableName

snake_case

my_variable_name

kebab-case

my-variable-name

CONSTANT_CASE

MY_VARIABLE_NAME

dot.case

my.variable.name

Everything runs in your browser — nothing you type here is sent anywhere.

Frequently asked questions

What input formats does this understand?+

Any of them — camelCase, PascalCase, snake_case, kebab-case, dot.case, or plain space-separated words. The tool splits your input into words first, then re-joins it in every output format at once.

Why would I need this?+

Different languages and style guides expect different naming conventions — JavaScript variables are usually camelCase, Python variables are snake_case, CSS classes and URLs are often kebab-case, and environment variables are typically CONSTANT_CASE.

Is my text uploaded anywhere?+

No. All conversion happens client-side in your browser; nothing you type is sent to a server.