Web Tools
Case Converter
Convert text between camelCase, PascalCase, snake_case, CONSTANT_CASE, kebab-case, dot.case, path/case, Title Case, and Sentence case. Instant results with one-click copy. Runs entirely in your browser.
case string converter naming developer-tools
Published May 27, 2026
All interactive tools run entirely in your browser. Your data never leaves your device.
How It Works
Type or paste any text and the tool instantly shows conversions to all supported naming conventions. The tokenizer intelligently splits on camelCase boundaries, underscores, hyphens, dots, slashes, spaces, and digit-letter transitions — so it works no matter what format your input is in.
Supported Cases
- camelCase —
myVariableName - PascalCase —
MyVariableName - snake_case —
my_variable_name - CONSTANT_CASE —
MY_VARIABLE_NAME - kebab-case —
my-variable-name - dot.case —
my.variable.name - path/case —
my/variable/name - Title Case —
My Variable Name - Sentence case —
My variable name
Use Cases
- Renaming variables when switching between language conventions (JS, Python, CSS)
- Converting API field names between camelCase and snake_case
- Generating URL slugs or file paths from human-readable text
- Creating constant names from descriptive phrases