Case converter

Paste text or an identifier and see it in every common naming style at once — camelCase, snake_case, kebab-case, CONSTANT_CASE, Title Case and others.

Paste text or an identifier and see it in every common naming style at once — camelCase, snake_case, kebab-case, CONSTANT_CASE, Title Case and others.

How to use

  1. Type or paste text or an identifier
  2. All case styles are shown at once
  3. Click any result to copy it
  4. Mixed input like helloWorld_foo is split correctly

Frequently asked questions

How is the text split into words?

By separators (space, _, -, ., /) and by camelCase boundaries, so XMLHttpRequest becomes xml/http/request.

What's the difference between kebab and snake?

kebab-case joins words with hyphens, snake_case with underscores; SCREAMING_SNAKE is uppercase snake.

When do I use each style?

Conventions vary: camelCase for JS variables, snake_case for Python, kebab-case for URLs/CSS, CONSTANT_CASE for constants.