Case Converter

Convert text between UPPER, lower, Title, Sentence case and programmer styles like camelCase, PascalCase, snake_case, kebab-case and CONSTANT_CASE. Instant and in-browser.

Output

The case styles

Title capitalises each word; Sentence capitalises the first letter of each sentence. camelCase, PascalCase, snake_case, kebab-case and CONSTANT_CASE first split your text into words, breaking on spaces, punctuation and camelCase humps, then re-join them in the chosen style.

All conversion happens in your browser; nothing is uploaded.

What this does

A case converter changes text between UPPER, lower, Title and Sentence case, plus programmer styles like camelCase, snake_case and kebab-case.

How to use it

  1. Paste your text.
  2. Pick the target case.
  3. Read the converted result.
  4. Copy it.

How it works

Text is split into words on spaces, punctuation and camelCase humps, then re-joined in the chosen style. Title Case capitalises every word; Sentence case capitalises only the first letter of each sentence.

Example

“XML HTTP request” becomes xmlHttpRequest in camelCase or xml_http_request in snake_case.

Sources & methodology

Last updated .

Frequently asked questions

What is the difference between Title and Sentence case?

Title Case capitalises the first letter of every word; Sentence case capitalises only the first letter of each sentence.

How do the programmer cases split words?

Your text is broken into words on spaces, punctuation and camelCase humps, then re-joined in the chosen style, so “XML HTTP request” becomes xmlHttpRequest or xml_http_request.

Is my text private?

Yes. All conversion runs in your browser; nothing is uploaded.