Case converter

Convert text between UPPERCASE, lowercase, Title Case, Sentence case, camelCase, snake_case, and kebab-case.

How it works

Worked examples

Title Case

Input: hello world

Output: Hello World

Each word is capitalized.

snake_case

Input: Hello World

Output: hello_world

Words are lowercased and joined with underscores.

camelCase

Input: Hello world from RU

Output: helloWorldFromRu

First word lowercase, later words capitalized, joined without spaces.

FAQ

Does it keep my punctuation?

UPPER, lower, Title, and Sentence keep punctuation; camel, snake, and kebab strip separators by design.

Will it change accented letters?

Yes, standard casing rules apply to accented Latin letters too.

Is anything sent to a server?

No, conversion runs entirely in your browser.

Updated: June 7, 2026