BENCH

Case Converter

camelCase, snake_case, kebab-case, Title Case and more

How it works

The converter intelligently splits your input into words — handling existing camelCase, snake_case, kebab-case and spaces — then re-joins them in the style you pick. This makes it easy to rename variables, build URL slugs or normalize headings.

Frequently asked

How does it detect word boundaries?

It splits on spaces, underscores, hyphens and dots, and also on camelCase boundaries (a lowercase letter followed by an uppercase one), so 'getHTTPResponse' becomes the words get, HTTP, Response.

What is CONSTANT_CASE?

Uppercase words joined by underscores (also called SCREAMING_SNAKE_CASE), commonly used for constants and environment variables.