Text Case Converter

Convert text between different cases: uppercase, lowercase, title case, camel case, snake case, and more.

Text Case Converter
Convert text between different cases

Tips:

  • Use Title Case for headings and titles
  • Use camelCase for JavaScript variables
  • Use snake_case for Python variables
  • Use kebab-case for CSS classes and HTML attributes

About Text Cases

Different text cases are used in various contexts in programming, writing, and design. Understanding these formats helps you maintain consistency in your projects.

Common Text Cases

  • UPPERCASE - All characters are capitalized
  • lowercase - All characters are in small letters
  • Title Case - The First Letter Of Each Word Is Capitalized
  • camelCase - First letter is lowercase, first letter of each subsequent word is uppercase, no spaces
  • PascalCase - First letter of each word is uppercase, no spaces
  • snake_case - All lowercase with underscores between words
  • kebab-case - All lowercase with hyphens between words

When to Use Different Cases

  • UPPERCASE - Headlines, acronyms, constants in programming
  • lowercase - Regular text, CSS properties
  • Title Case - Titles, headings, book names
  • camelCase - JavaScript variables and functions
  • PascalCase - Class names in many programming languages
  • snake_case - Python variables, SQL table names
  • kebab-case - CSS class names, HTML IDs and attributes