Case Converter
Paste your text, then click a conversion button below.
Why Capitalization Is Never "Just Formatting"
There's a moment every writer, developer, and content manager knows well: you paste a chunk of text into a document and realize the original sender typed the whole thing in ALLCAPS, or—worse—someone handed you a CSV export where every product name is in lowercase and your style guide demands Title Case. That's not a minor annoyance. It's a time sink that compounds silently across a workday.
Case conversion is one of those tasks that sounds trivial until you're doing it at volume. Manually fixing 200 product titles, 50 email subjects, or a 3,000-word article's heading structure by hand isn't editing—it's data janitorial work. The right tool eliminates it in seconds.
The Five Cases and When Each One Actually Matters
Most people know uppercase and lowercase intuitively. The other three formats—Title Case, Sentence case, and Toggle Case—have more specific use contexts that are worth understanding if you want to use them correctly rather than just at random.
UPPERCASE carries authority and, in moderation, urgency. It's the standard for acronyms (NASA, PDF, HTML), legal clause headers, warning labels, and certain brand names that stylistically insist on it. The trap writers fall into is overusing it for emphasis—inside running prose, all-caps reads as shouting, which erodes authority rather than building it. Use it structurally, not emotionally.
lowercase has carved out a legitimate aesthetic niche in modern branding. Startups in particular use all-lowercase for product names and even legal entities to signal approachability, minimalism, and youth. It's also the required format in programming for variable names in many conventions (Python's snake_case being the most widespread). Outside branding and code, using lowercase where capitalization is grammatically expected reads as careless rather than cool.
Title Case capitalizes the first letter of every word (or in strict Chicago/AP style, every significant word). It's the standard for book titles, article headlines, product names, button labels in UIs, and navigation links. The rules around which words to capitalize—conjunctions, prepositions, articles—are genuinely debated between style guides, so the pragmatic approach most teams take is simply: capitalize everything, consistently. That's what this tool does, and for 95% of real-world use cases it's exactly right.
Sentence case capitalizes only the first letter of the first word in each sentence, plus proper nouns. It mirrors natural written language and is increasingly preferred by major tech companies (Google, Slack, Notion) for interface text, button copy, and error messages. The reasoning is readability: Sentence case feels conversational and reduces visual noise compared to Title Case. If you're writing UX copy in 2024, defaulting to Sentence case is the defensible modern choice.
tOgGlE cAsE alternates between uppercase and lowercase character by character. It has exactly one professional use case: mocking something or someone in the ironic internet "spongebob mocking" style. Beyond that, it's a development test tool—useful for checking whether a form or system correctly handles mixed-case input rather than assuming everything arrives sanitized. Don't use it in a résumé. Do use it to stress-test your own code.
Where Developers Need Case Conversion Most
For programmers, text case isn't just stylistic—it's syntactically meaningful. The reason every language has case-handling built into its standard library is because case mismatches cause real bugs. A backend expecting firstName in camelCase will silently discard a field arriving as first_name or FirstName. Data pipelines that ingest CSVs from multiple sources spend disproportionate time normalizing field names to a consistent case before anything useful can happen.
Content management systems introduce a different class of problems. A CMS with 800 category names entered by 12 different contributors over five years will have inconsistent capitalization across the board. Bulk-editing titles to a consistent Title Case before an SEO audit or site redesign is the kind of unglamorous work that takes an afternoon to do manually and thirty seconds with the right tool.
The SEO Angle on Capitalization
Search engines are largely case-insensitive for ranking purposes, but capitalization affects click-through rate—and CTR affects ranking. Title Case in meta titles and H1 headings performs differently than Sentence case depending on the search vertical. E-commerce titles with product names in Title Case ("Men's Waterproof Hiking Boots") tend to scan faster in SERPs because they match the visual rhythm shoppers expect. Informational content ("How to fix a leaking tap") tends to perform better in Sentence case, which reads as more human and less robotic.
More concretely: if you're migrating blog content and your old platform stored all article titles in UPPERCASE because of a historical CMS quirk, you need bulk Sentence case conversion before you republish. That's not optional—title tags in all-caps trigger Google's title rewriting behavior, where the search engine substitutes its own version of your title, often pulling from the H1 or body text instead. Fixing the case gets your title tag respected.
Common Mistakes When Converting Case Manually
The most predictable error in manual Title Case conversion is inconsistency with prepositions and conjunctions. Writers will capitalize "Of" and "And" in some headings but not others, or they'll correctly lowercase "a" but then capitalize "An." A programmatic converter eliminates this variance entirely.
Sentence case conversion done manually nearly always misses the second and third sentence in a paragraph, particularly when the preceding sentence ends mid-edit. The eye skips the sentence boundary. A tool catches every instance including those after exclamation marks and question marks, which humans routinely miss because they're less visually salient than periods.
Copying text from PDFs introduces a separate class of problems: PDF extraction frequently mangles capitalization based on the source font encoding, producing strings like "tHE QuiCK BROwN FOX" from what was ordinary body text in the original. Running a raw PDF extraction through Sentence case conversion before any other editing step saves enormous amounts of cleanup time.
A Note on Proper Nouns and Limitations
Every automated case converter has the same honest limitation: it cannot distinguish proper nouns from common nouns. Converting "the president visited paris in april" to Sentence case gives you "The president visited paris in april"—the sentence-initial capital is correct, but "paris" and "april" remain uncapitalized. That's not a bug; it's the boundary of what pattern matching can do without natural language understanding.
The correct workflow is: convert first, then do a human pass for proper nouns. For most use cases—UI copy, product titles, headlines, code comments—proper nouns either don't appear or are obvious enough to catch in a single read. For literary or journalistic text with dense proper noun counts, the converter still saves 80% of the work; the remaining 20% is the part that actually requires a human.
Knowing the limits of a tool is part of using it well. Case converters are excellent at eliminating mechanical variance; they are not substitutes for editorial judgment. Use them to handle the tedious so you can spend your attention on the meaningful.