Convert identifiers between camelCase, PascalCase, snake_case, kebab-case, CONSTANT_CASE, dot.case, Title and Sentence case.. Case Converter (Dev) is a free online tool from the ToolsRift Developer Tools collection. It runs entirely in your browser — nothing to install, no signup, and your data never leaves your device.
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.