Paste an identifier or phrase and the tool splits it into words, then shows it rendered in every supported programming case so you can copy the one you need.
Both join words without spaces; camelCase lowercases the first word (myValue) while PascalCase capitalizes it (MyValue).
Uppercase words joined by underscores are the convention for constants and environment variables, e.g. MAX_RETRY_COUNT.
The tool splits on spaces, hyphens, underscores and camelCase humps, so mixed input like 'my-htmlValue' is parsed correctly.