Skip to main content
DevTools24

Convertisseur de Casse

Convertissez le texte entre camelCase, PascalCase, snake_case, kebab-case et plus.

Examples:
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

Case Converter - Détails techniques

Different programming languages and frameworks have different naming conventions. camelCase is common in JavaScript, snake_case in Python, PascalCase for classes, and kebab-case for CSS and URLs.

Alternative en ligne de commande

# No standard terminal command, but in Bash:\n# UPPERCASE\necho 'hello' | tr '[:lower:]' '[:upper:]'\n\n# lowercase\necho 'HELLO' | tr '[:upper:]' '[:lower:]'