Case Converter
Convert text between camelCase, snake_case, kebab-case, PascalCase, UPPER_CASE, Title Case and more.
Inputlowercase
camelCasehelloWorldExampleText
✓PascalCaseHelloWorldExampleText
✓snake_casehello_world_example_text
✓UPPER_SNAKE_CASEHELLO_WORLD_EXAMPLE_TEXT
✓kebab-casehello-world-example-text
✓UPPER-KEBAB-CASEHELLO-WORLD-EXAMPLE-TEXT
✓Title CaseHello World Example Text
✓Sentence caseHello world example text
✓lowercasehello world example text
✓UPPERCASEHELLO WORLD EXAMPLE TEXT
✓dot.casehello.world.example.text
✓path/casehello/world/example/text
✓About Case Conversion
Different programming languages and contexts use different naming conventions. camelCase is standard in JavaScript and Java. snake_case is used in Python, Ruby, and SQL. kebab-case is the norm for CSS classes, URLs, and CLI flags. PascalCase is used for classes and components. UPPER_SNAKE_CASE is the convention for constants and environment variables.
Input format is auto-detected (splitting on uppercase boundaries, underscores, hyphens, dots, and slashes) and converts to all common formats simultaneously. Click any result to copy it. Runs entirely on the client side.