Text case problems are surprisingly common. You paste a heading and it is all uppercase from a PDF. You get data from an API with every key in snake_case and you need camelCase for your JavaScript. A colleague sends a document in ALL CAPS. Converting manually takes time and introduces errors — a case converter does it instantly.

This guide explains the different text case formats, when each is used, and how to convert between them in one click.

Text Case Types and When to Use Them

Step-by-Step: Convert Text Case Free

1
Open the Case Converter
Go to webtoolsz.com/case-converter. No account or sign-up needed.
2
Paste your text
Paste any amount of text into the input field. The converter handles single words, sentences, paragraphs, or entire documents.
3
Click the target case
Click UPPERCASE, lowercase, Title Case, Sentence case, camelCase, or whichever format you need.
4
Copy the result
The converted text appears instantly. Click Copy to clipboard and paste wherever you need it.
Shortcut tip: In Microsoft Word, you can cycle through basic case options with Shift + F3. In VS Code, use the Command Palette and search "Transform to Uppercase/Lowercase". For anything more than those two options, an online case converter is faster.

Convert Text Case — Instantly Free

UPPERCASE, lowercase, Title Case, camelCase, snake_case and more. No sign-up.

Open Case Converter

Frequently Asked Questions

What is the difference between title case and sentence case?

Title Case capitalises the first letter of every major word (nouns, verbs, adjectives, but usually not articles or short prepositions). Example: "The Quick Brown Fox Jumps". Sentence case only capitalises the first word of the sentence: "The quick brown fox jumps". Sentence case is more common in UI text; title case is used in headings and article titles.

What is camelCase and when is it used?

camelCase joins words together with no spaces and capitalises each word after the first: "thisIsAnExample". It is the standard naming convention in JavaScript variables, JSON keys, and many programming languages. PascalCase (also called UpperCamelCase) capitalises every word including the first: "ThisIsAnExample" — used for class names.

What is snake_case?

snake_case joins words with underscores and keeps everything lowercase: "this_is_an_example". It is widely used in Python variable names, database column names, and file names where spaces are not allowed.

Does the case converter preserve punctuation and numbers?

Yes. Only alphabetic characters are changed. Numbers, punctuation, special characters, and symbols are preserved exactly as entered.