๐ 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