Text Case Converter

Convert text between different cases and formats

Input Text

Characters: 0
Words: 0

lowercase

hello world

UPPERCASE

HELLO WORLD

Title Case

Hello World

Sentence case

Hello world

camelCase

helloWorld

PascalCase

HelloWorld

snake_case

hello_world

kebab-case

hello-world

CONSTANT_CASE

HELLO_WORLD

dot.case

hello.world

tOGGLE cASE

HeLLo WoRLd

Remove Spaces

helloworld

Case Types

camelCase: Used in JavaScript, Java - first word lowercase
PascalCase: Used in class names - all words capitalized
snake_case: Used in Python, Ruby - words separated by underscores
kebab-case: Used in URLs, CSS - words separated by hyphens
CONSTANT_CASE: Used for constants - uppercase with underscores

Common Use Cases

  • Converting variable names between programming conventions
  • Formatting text for different platforms
  • Creating URL-friendly slugs from titles
  • Standardizing database field names
  • Formatting headings and titles