Naming Style Converter

Convert among camel / Pascal / snake / kebab / CONSTANT styles in one click

How to use

  1. Enter one identifier, e.g. user_login_count or getUserInfo.
  2. Click "Convert"; the output lists camel / Pascal / snake / kebab / CONSTANT styles together.
  3. Click "Copy" to take all results.
  4. Tip: mixed styles are parsed too; the tool auto-splits on camelCase and separators.

FAQ

How are words split?

First split by separators like underscores, hyphens and spaces, then handle camelCase boundaries (e.g. getUserInfo into user / get / info), unify to lowercase and recombine.

Does it support Chinese identifiers?

No. Naming style conversion targets ASCII alphanumeric identifiers; Chinese is treated as a non-word character and ignored.