Case Converter
Convert text between different case formats: uppercase, lowercase, title case, camel case, pascal case, snake case, and kebab case.
0 characters, 0 words
0 characters, 0 words
About Different Case Formats
UPPERCASE
All characters are converted to uppercase letters.
Example: "hello world" → "HELLO WORLD"
lowercase
All characters are converted to lowercase letters.
Example: "Hello World" → "hello world"
Title Case
The first letter of each word is capitalized.
Example: "hello world" → "Hello World"
camelCase
The first letter of each word (except the first) is capitalized, with no spaces.
Example: "hello world" → "helloWorld"
PascalCase
The first letter of each word is capitalized, with no spaces.
Example: "hello world" → "HelloWorld"
snake_case
All letters are lowercase, with words separated by underscores.
Example: "Hello World" → "hello_world"
kebab-case
All letters are lowercase, with words separated by hyphens.
Example: "Hello World" → "hello-world"
Sentence case
The first letter of the first word is capitalized, the rest lowercase.
Example: "HELLO WORLD" → "Hello world"