Free Online Case Converter
Type or paste your text once and instantly see it converted into all common case formats — from coding conventions like camelCase and snake_case to writing styles like Title Case and Sentence case.
Input Text
UPPERCASE
—
lowercase
—
Title Case
—
Sentence case
—
camelCase
—
PascalCase
—
snake_case
—
kebab-case
—
SCREAMING_SNAKE_CASE
—
iNVERT cASE
—
Case Format Reference
camelCase
First word lowercase, subsequent words capitalised, no separators. Standard for JavaScript/TypeScript variables and functions.
PascalCase
Every word capitalised, no separators. Used for class names, React components, and TypeScript interfaces.
snake_case
All lowercase, words separated by underscores. Common in Python, Ruby, and database column names.
kebab-case
All lowercase, words separated by hyphens. Used in CSS class names, HTML attributes, and URL slugs.
SCREAMING_SNAKE_CASE
All uppercase with underscores. The convention for constants and environment variables.