Text Case Converter

Convert text between 12 different cases

Input Text

0 characters

Enter text above to see all case conversions

How to Use This Tool

1

Paste your text

Enter the text you want to convert.

2

Choose a case

Select from camelCase, snake_case, UPPER CASE, Title Case, and more.

3

Copy the result

Copy the converted text to your clipboard.

Features

Multiple Cases

Convert between camelCase, snake_case, kebab-case, PascalCase, UPPER, lower, Title Case, and Sentence case.

Instant Conversion

Text converts in real time as you type or paste.

One-Click Copy

Copy any converted variant with a single click.

Developer Friendly

Perfect for converting variable names between language conventions.

Frequently Asked Questions

What is camelCase?

camelCase capitalizes the first letter of each word except the first, with no separators (e.g., myVariableName). It is the standard naming convention in JavaScript, Java, and C#.

What is snake_case?

snake_case uses lowercase letters with underscores between words (e.g., my_variable_name). It is the standard in Python, Ruby, and database column naming.

What is kebab-case?

kebab-case uses lowercase letters with hyphens between words (e.g., my-variable-name). It is commonly used in URLs, CSS class names, and HTML attributes.

When should I use PascalCase?

PascalCase (or UpperCamelCase) capitalizes the first letter of every word (e.g., MyClassName). It is the convention for class names in most object-oriented languages.