Skip to main content
Back to Tools
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

  • camelCasemyVariableName
  • PascalCaseMyVariableName
  • snake_casemy_variable_name
  • CONSTANT_CASEMY_VARIABLE_NAME
  • kebab-casemy-variable-name
  • dot.casemy.variable.name
  • path/casemy/variable/name
  • Title CaseMy Variable Name
  • Sentence caseMy 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