📝 Convertisseur de Casse de Texte

Convertissez le texte entre différentes casses.

Case Examples

UPPERCASE: HELLO WORLD
lowercase: hello world
Title Case: Hello World
Sentence case: Hello world
camelCase: helloWorld
PascalCase: HelloWorld
snake_case: hello_world
kebab-case: hello-world

Frequently Asked Questions

What's the difference between camelCase and PascalCase?

camelCase starts with a lowercase letter (firstName), while PascalCase starts with uppercase (FirstName). Both remove spaces and capitalize subsequent words.

When should I use snake_case vs kebab-case?

snake_case uses underscores and is common in Python and databases. kebab-case uses hyphens and is popular in URLs and CSS class names.

What is sentence case?

Sentence case capitalizes only the first letter of the text, like a normal sentence. The rest of the text is lowercase.

Can I convert text with special characters?

Yes, the converter handles special characters and numbers. However, some cases like camelCase and snake_case work best with letters and spaces.

Related Calculators