Paste text once, then copy the format that fits your target.
Code styles
Common in identifiers, URLs, and code-facing strings.
camelCase
Common in JavaScript variables and object keys.
—
PascalCase
Useful for React components and class names.
—
snake_case
Common in Python names and database fields.
—
kebab-case
Good for URLs, file names, and CSS-friendly strings.
—
CONSTANT_CASE
Often used for constants and enum-like keys.
—
Readable
Better for prose, headings, and copy decks.
Title Case
A natural fit for headings and labels.
—
Sentence case
Reads more naturally in UI copy and prose.
—
lowercase
Keeps text normalized and understated.
—
UPPERCASE
Adds emphasis for legacy labels or loud states.
—
Other transforms
Handy when you need a literal match for niche tools.
dot.case
Works for namespaced keys and niche slug formats.
—