Convert text to UPPERCASE, lowercase, Title Case, camelCase, snake_case, and more — instantly.
UPPERCASE converts every letter to capitals. Used for acronyms, headings, and emphasis.
lowercase converts every letter to small case. Common in programming, usernames, and casual writing.
Title Case capitalizes the first letter of each word. Standard for article titles, book titles, and headings.
Sentence case capitalizes only the first letter of each sentence, just like normal writing.
camelCase removes spaces and capitalizes each word except the first. Widely used in JavaScript variable naming.
PascalCase capitalizes every word with no spaces. Used for class names in most programming languages.
snake_case replaces spaces with underscores in lowercase. Common in Python, Ruby, and database column names.
kebab-case replaces spaces with hyphens. Standard for URL slugs, CSS class names, and HTML attributes.