Text Case Converter

Convert any text between multiple cases: UPPERCASE, lowercase, Title Case, Sentence case, camelCase, PascalCase, snake_case, kebab-case, and more.

Aa
Case Converter
TextFree · No signup
Character Count: 0
Guide

How to Use Case Converter

Paste Text

Enter the text you want to convert in the input box.

Choose Case

Click any case button: UPPER, lower, Title, Sentence, camelCase, PascalCase, snake_case, or kebab-case.

Copy Result

The converted text appears instantly. Click copy to use it.

FAQ

Frequently Asked Questions

camelCase writes compound words without spaces, with each word after the first starting with a capital letter. Example: "hello world" → "helloWorld". Used in JavaScript variables and functions.
PascalCase is like camelCase but the first letter is also capitalized. Example: "hello world" → "HelloWorld". Used in class names in many programming languages.
snake_case uses underscores instead of spaces with all lowercase letters. Example: "hello world" → "hello_world". Common in Python variables, database column names.
kebab-case uses hyphens instead of spaces with all lowercase. Example: "hello world" → "hello-world". Used in URLs, CSS classes, and HTML attributes.
Title Case capitalizes the first letter of each major word. Example: "the quick brown fox" → "The Quick Brown Fox". Used in headings and titles.