Skip to main content

Letter Types

Generator

Text Case Converter

Convert text between different cases instantly. UPPERCASE, lowercase, Title Case, camelCase, and more.

0 characters • 0 words

Converted text will appear here...

0 characters • 0 words

Choose Conversion Type

Using the Case Converter

Quick Start

  1. 1Paste your text in the input box (or upload a file if you have a lot)
  2. 2Pick the case style you need from the buttons below
  3. 3Your converted text appears instantly in the output box
  4. 4Copy the result or save it as a file for later use

Best Practices

  • JavaScript code: camelCase works best for variable names
  • Python code: snake_case follows PEP 8 style guidelines
  • CSS classes: kebab-case is the web standard
  • Article headlines: Title Case looks more professional
  • Large files: Upload .txt files instead of copy-pasting

Examples

Programming Cases

Original:convert text case
camelCase:convertTextCase
PascalCase:ConvertTextCase
snake_case:convert_text_case
kebab-case:convert-text-case

Writing Cases

Original:hello world example
UPPERCASE:HELLO WORLD EXAMPLE
Title Case:Hello World Example
Sentence case:Hello world example
AlTeRnAtInG:HeLlO wOrLd ExAmPlE

Programming Projects

Different languages have different naming conventions. Converting between styles helps you follow each language's best practices and maintain clean, readable code.

  • • JavaScript variables: camelCase
  • • Python functions: snake_case
  • • CSS properties: kebab-case
  • • C# classes: PascalCase

Content Writing

Proper capitalization makes your writing look polished and professional. Different contexts call for different styles - headlines need impact, body text needs readability.

  • • Article headlines: Title Case
  • • Body paragraphs: Sentence case
  • • Important notices: UPPERCASE
  • • Section headings: Capitalize Words

Social Media Posts

Case styles can completely change how your post feels. All caps grabs attention but can feel aggressive, while alternating case adds playfulness. Choose based on your message tone.

  • • Important announcements: UPPERCASE
  • • Relaxed conversations: lowercase
  • • Playful content: AlTeRnAtInG
  • • Ironic comments: iNVERSE cASE

Frequently Asked Questions

Title Case vs Capitalize Words - what's different?

Title Case follows English grammar rules - it skips small words like "and," "the," "of" unless they start the title. Capitalize Words just makes every single word start with a capital letter, no exceptions.

camelCase or PascalCase - which should I pick?

camelCase starts lowercase and works great for variables and function names (like "getUserData"). PascalCase starts uppercase and fits better for class names and types (like "UserAccount"). It's mostly about following conventions.

What about numbers and special characters?

Numbers stay exactly the same in all conversions. Most special characters do too, except when converting to programming formats like snake_case or kebab-case - those might remove or replace some symbols to create valid variable names.

Can I upload really large files?

Since everything happens in your browser, it depends on your device's memory. Files up to a few megabytes usually work great, but huge files might make things sluggish. Try breaking them into smaller chunks if needed.