Text Case Converter

Convert text between UPPER CASE, lower case, Title Case, camelCase, snake_case, and more.

100% Client-Side

What is Text Case Converter?

A text case converter transforms your text between different letter cases -- uppercase, lowercase, title case, sentence case, camelCase, and more. It saves time when reformatting headings, code variables, database entries, or correcting text accidentally typed in the wrong case.

How to Use

  1. Paste or type your text into the input area
  2. Click the desired case style button
  3. The converted text appears instantly
  4. Copy the result or try a different case conversion

Frequently Asked Questions

What is title case?
Title case capitalizes the first letter of each major word while keeping articles, prepositions, and conjunctions lowercase (e.g., 'The Quick Brown Fox Jumps Over the Lazy Dog').
What is the difference between camelCase and PascalCase?
camelCase starts with a lowercase letter, with each subsequent word capitalized (e.g., myVariableName). PascalCase capitalizes every word, including the first (e.g., MyClassName).
When would I need snake_case or kebab-case?
snake_case is common in Python and database column names. kebab-case is used in URLs and CSS class names. Both improve readability over concatenated words.