A complete guide to UPPERCASE/lowercase conversion, Title Case rules, Sentence case, Alternating case, Reverse Text, and developer naming formats.
A text case converter rewrites the letters of a text according to a rule you pick, without changing the words themselves. It's used to fix text that was accidentally typed in ALL CAPS, format a heading correctly, punctuate a paragraph into proper sentences, or generate a code-friendly variable name. The tool above handles all of these in separate tabs, instantly, entirely in your browser.
How do I convert text to UPPERCASE or lowercase?
Quick answerClick the UPPERCASE tab to convert every letter to a capital letter, or the lowercase tab to convert everything to small letters. Both use the browser's standard case-conversion rules and update instantly as you type — useful for fixing text typed with Caps Lock stuck on, or for normalizing text before storing it.
What is Title Case, and which words stay lowercase?
Quick answerTitle Case capitalizes the first letter of each main word in a title. This tool keeps short "minor" words — articles, conjunctions, and short prepositions like a, an, the, and, or, of, in, to, with — lowercase when they fall in the middle of a title, while the first and last word are always capitalized. So "the quick fox and the lazy dog" becomes "The Quick Fox and the Lazy Dog", not every single word capitalized.
Tools that skip this rule capitalize every word, producing an unnatural-looking title like "The Quick Fox And The Lazy Dog." Following standard style-guide conventions for minor words makes headlines and titles read correctly.
What is Sentence case, and how is it different from Title Case?
Quick answerSentence case capitalizes only the first letter of each sentence and lowercases the rest — ideal for turning a shouted or randomly-cased paragraph into normal prose. Title Case capitalizes the first letter of each main word instead — used for headlines, product names, and menu items. Use Sentence case for body text, Title Case for titles.
What are Alternating Case and Reverse Text used for?
Quick answerAlternating Case (also called "sPongeBob case") switches each letter between lowercase and uppercase in sequence, mostly used for humor or emphasis on social media. Reverse Text flips the entire string back to front, letter by letter — handy for novelty messages, simple obfuscation, or checking whether a phrase reads the same backward. Neither changes the meaning of the text, only its appearance.
When should I use camelCase, snake_case, or other developer formats?
Quick answerThese are naming conventions used across programming languages: camelCase (JavaScript/Java variables), PascalCase (class/component names), snake_case (Python and database columns), kebab-case (URL slugs and CSS classes), dot.case (config keys and npm namespaces), and CONSTANT_CASE (environment variables and constants). The Developer formats section below generates all six automatically from the same text.