What it's for
Every language and code convention uses a different naming style: JavaScript prefers camelCase for variables, Python uses snake_case, classes usually use PascalCase, URLs and CSS use kebab-case, and constants use CONSTANT_CASE. This tool converts a text into all of these formats at once.
How it works
The text is automatically split into words — it works with space-separated phrases as well as text already in camelCase, snake_case or kebab-case.
Frequently asked questions
Does it work if I paste text already in camelCase?
Yes — the tool detects lowercase-to-uppercase transitions and splits the words automatically before converting.
Does it work with accented characters?
Yes, but for technical formats (code variables) it's best to use plain text, since most languages don't allow accents in variable names.