Case Converter
Convert text between camelCase, snake_case, kebab-case, Title Case, and more.
Word boundaries are detected from spaces,
-, _, . and camel/Pascal humps.
camelCase
PascalCase
snake_case
CONSTANT_CASE
kebab-case
dot.case
Title Case
Sentence case
lower case
UPPER CASE
How it works
The input is split into individual words by detecting separators
(space, -, _, .) as well as
camelCase/PascalCase humps and letter→digit boundaries. The word list is
then rejoined using each target convention. Everything runs locally in your
browser — nothing is uploaded.