Text Case Converter

Convert text to UPPER CASE, lower case, Title Case, camelCase, PascalCase, kebab-case, and snake_case instantly. Free online tool.

How to Use

  1. Type or paste text into the input box.
  2. All case variants update instantly as you type.
  3. Click Copy next to any variant to copy it.

Case Formats Reference

NameExampleCommon Use
UPPER CASEHELLO WORLDHeadings, constants (informal)
lower casehello worldGeneral text normalization
Title CaseHello WorldTitles, proper nouns
Sentence caseHello worldNormal prose
camelCasehelloWorldJS variables, JSON keys
PascalCaseHelloWorldClasses, components
kebab-casehello-worldCSS classes, URL slugs
snake_casehello_worldPython, SQL columns
CONSTANT_CASEHELLO_WORLDEnv vars, constants

FAQ

What is camelCase?

camelCase joins words with no separator, capitalizing each word after the first. Example: 'hello world' → 'helloWorld'. Used widely in JavaScript variable names.

What is snake_case?

snake_case replaces spaces with underscores and lowercases everything. Example: 'Hello World' → 'hello_world'. Common in Python and database column names.

What is kebab-case?

kebab-case replaces spaces with hyphens and lowercases everything. Example: 'Hello World' → 'hello-world'. Standard for CSS class names and URL slugs.

Is my text sent anywhere?

No. All conversions run entirely in your browser with JavaScript. Nothing is sent to any server.