🔠 Case Converter
camelCase, snake_case, PascalCase, kebab-case + 10 more. One input → all formats instantly.
camelCase
helloWorldExampleTextPascalCase
HelloWorldExampleTextsnake_case
hello_world_example_textCONSTANT_CASE
HELLO_WORLD_EXAMPLE_TEXTkebab-case
hello-world-example-textCOBOL-CASE
HELLO-WORLD-EXAMPLE-TEXTdot.case
hello.world.example.textpath/case
hello/world/example/textTitle Case
Hello World Example TextSentence case
Hello world example textlowercase
hello world example textUPPERCASE
HELLO WORLD EXAMPLE TEXTaLtErNaTiNg
hElLo wOrLd eXaMpLe tExTiNVERSE cASE
HELLO WORLD EXAMPLE TEXT📚 When to Use Which
- 🐫 camelCase: JavaScript variables, JSON keys (most common)
- 🐍 snake_case: Python, Ruby, database columns
- 🐉 PascalCase: Class names (most languages), React components
- 🔤 kebab-case: URLs, CSS classes, HTML IDs, file names
- 📢 CONSTANT_CASE: Constants, env vars, enums
- 📂 path/case: File paths, namespaces