Text Case Converter

Convert text between different cases with ease

Result

Characters: 0 | Words: 0

About Text Cases

Text case conversion is essential for formatting text according to different style guides and conventions. Each case type serves a specific purpose in writing and programming.

Case Types

Writing Cases

  • UPPERCASE: All letters in capital
  • lowercase: All letters in small
  • Title Case: First letter of each word capitalized
  • Sentence case: First letter of sentences capitalized

Programming Cases

  • camelCase: First letter of each word except first
  • PascalCase: First letter of each word capitalized
  • snake_case: Words separated by underscores
  • kebab-case: Words separated by hyphens

Usage Tips

  • Use Title Case for headlines and article titles
  • Use Sentence case for normal paragraphs and content
  • Use camelCase for JavaScript variables and functions
  • Use PascalCase for JavaScript/TypeScript classes
  • Use snake_case for Python variables and functions
  • Use kebab-case for HTML attributes and CSS classes