Text Case Converter

Development Client-side case converter camelcase snake case kebab case pascal case uppercase lowercase

This tool runs entirely client-side, in your browser: your data is never sent anywhere.

What it does

Converts text between the most common casing styles used in programming and writing: camelCase, PascalCase, snake_case, kebab-case, CONSTANT_CASE, Title Case, Sentence case, UPPERCASE, and lowercase.

Try it

How it works

  1. The input is first split into individual "words" by detecting word boundaries: spaces, hyphens, underscores, and camelCase/PascalCase transitions (lowercase-to-uppercase boundaries).
  2. Each target case then re-joins those words with its own rule:

Everything runs locally in your browser, updating live as you type.