DevTool Desk

Case Converter

UPPERCASETHE QUICK BROWN FOX JUMPS_OVER-THE LAZY DOG
lowercasethe quick brown fox jumps_over-the lazy dog
Title CaseThe Quick Brown Fox Jumps Over The Lazy Dog
camelCasetheQuickBrownFoxJumpsOverTheLazyDog
PascalCaseTheQuickBrownFoxJumpsOverTheLazyDog
snake_casethe_quick_brown_fox_jumps_over_the_lazy_dog
kebab-casethe-quick-brown-fox-jumps-over-the-lazy-dog

Type or paste any text and see it instantly converted into every common casing convention — UPPERCASE, lowercase, Title Case, camelCase, PascalCase, snake_case, and kebab-case — with a one-click copy button next to each.

Frequently asked questions

How does the converter split words?

It splits on spaces, hyphens, underscores, and the boundary between a lowercase letter and an uppercase letter (so 'myVariableName' is recognized as three words), then rebuilds each casing style from those words.

When would I use snake_case vs kebab-case?

snake_case is common for variable and file names in Python, Ruby, and databases. kebab-case is common in URLs, CSS class names, and command-line flags.