Naming Style Converter
Convert among camel / Pascal / snake / kebab / CONSTANT styles in one click
How to use
- Enter one identifier, e.g.
user_login_countorgetUserInfo. - Click "Convert"; the output lists camel / Pascal / snake / kebab / CONSTANT styles together.
- Click "Copy" to take all results.
- 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.