Case converter
Convert text between UPPER, lower, camelCase, and more.
UPPERCASE
HELLO WORLD EXAMPLE
lowercase
hello world example
Title Case
Hello World Example
Sentence case
Hello world example
camelCase
helloWorldExample
PascalCase
HelloWorldExample
snake_case
hello_world_example
kebab-case
hello-world-example
CONSTANT_CASE
HELLO_WORLD_EXAMPLE
Everything runs in your browser. Nothing is uploaded.
How it works
Paste text
Paste any text or identifier. The converter splits it into normalised words on whitespace, punctuation, and camelCase boundaries.
Read every case
All nine cases render live. Tap copy next to the one you want.
Mix and match
Round-trip works in both directions — paste `HTMLParser` and watch it become `html-parser`, `HTML_PARSER`, or `Html Parser`.
Questions
What does this tool do?
The Case Converter rewrites any text or identifier into nine different cases at once: UPPERCASE, lowercase, Title Case, Sentence case, camelCase, PascalCase, snake_case, kebab-case, and CONSTANT_CASE. Paste a phrase or a variable name and every style renders live, each with its own copy button. The converter splits words intelligently on spaces, punctuation, and camelCase boundaries, and keeps acronyms intact — HTMLParser becomes HTML_PARSER rather than H_T_M_L_PARSER.
Does my text leave my device?
No. Conversion is pure string handling in your browser. Nothing is uploaded.
How does word splitting handle acronyms?
Words are split on whitespace, punctuation, and case boundaries. `HTMLParser` becomes `HTML` + `Parser` so acronyms stay intact in CONSTANT_CASE.
Sentence case vs Title Case?
Sentence case lower-cases everything and then capitalises the first letter — good for prose. Title Case capitalises each word — good for headlines.
