Case Converter
Convert text between uppercase, lowercase, camelCase, snake_case, and more in one click.
Your Text
Choose Conversion
Why would you need a case converter?
You know that moment when you accidentally write an entire paragraph with Caps Lock on? Or when you copy text from a PDF and it's all in uppercase? Instead of retyping everything from scratch, just paste it here and click the case you want. It's one of those tiny tools you don't think about until you desperately need it — and then you're really glad it exists.
All the case styles, explained
UPPERCASE and lowercase are pretty self-explanatory. Title Case capitalizes the first letter of every word — perfect for headings and article titles. Sentence case only capitalizes the first letter after a period, which is how normal writing looks. Toggle case flips whatever case each letter currently is, which is mostly just fun to mess with. The developer-friendly options — camelCase, PascalCase, snake_case, kebab-case, and dot.case — are essential when you're naming variables, writing CSS classes, or working with APIs that expect a specific naming convention.
How does the conversion actually work?
Each conversion runs entirely in your browser. There's no server involved, nothing is sent anywhere. For the simple cases like upper and lower, it's just the built-in JavaScript methods. For developer cases like camelCase and snake_case, the tool first splits your text into individual words (handling existing separators like spaces, hyphens, underscores, and even existing camelCase boundaries), then reassembles them with the correct casing and separator. It handles edge cases like multiple spaces and mixed separators pretty gracefully.
When is this most useful?
Developers probably use this daily — converting between snake_case API responses and camelCase JavaScript variables, or generating kebab-case CSS class names from a design spec. Writers and editors use Title Case and Sentence case to fix formatting issues in imported text. Students use it to fix those annoying all-caps paragraphs from older academic papers. It's genuinely one of those tools that saves you more time than you'd expect.