Random case turns ordinary text into the mocking, sarcastic style made famous by the SpongeBob meme. Each letter is randomly switched to upper or lower case, so “why would I do that” becomes something like “wHy WoULd i Do ThAt”. This tool gives you both a genuinely random coin-flip and a strict alternating pattern.
How it works
The converter walks through your text one character at a time. For each alphabetic character it decides the case; everything else passes through untouched.
random mode: for each letter, flip a coin -> upper if heads, else lower
alternating mode: for each letter, toggle a flag that started false
-> letters become lower, UPPER, lower, UPPER, ...
In alternating mode the toggle only advances on letters, so spaces and punctuation never throw the rhythm off. Because random mode draws a fresh coin flip for every letter, pressing Convert again produces a brand new pattern.
The two modes compared
Random mode looks more natural as mockery because real visual chaos is not perfectly alternating. Each letter is independently decided, so you sometimes get runs of uppercase or runs of lowercase mixed with single flips. That unpredictability is part of what makes it read as dismissive rather than just typographically unusual. The downside: regenerating produces a different result, which makes it difficult to use in a saved template or consistent meme format.
Alternating (strict) mode is deterministic: given the same input text, it always produces the same output. The rhythm is visually clean and symmetrical — tHiS iS eXaCtLy AlTeRnAtInG. It is easier to recognize as intentional, which some people prefer when the tone is more playful than hostile. Use this mode if you need the output to be reproducible.
Side-by-side example
Input: This is a ridiculous argument
Random mode might produce: tHIS Is a rIdIculous ARguMENT
Alternating mode always produces: tHiS iS a RiDiCuLoUs ArGuMeNt
Where this gets used
Beyond pure meme creation, random case has a few practical niches:
Screengrabs and quote images. When sharing a quote sarcastically in a context where tone is hard to read, mixed case is a widely understood visual shorthand for “I am quoting this to critique it, not endorse it.”
Discord and group chats. Chat communities that rely heavily on irony use it as a register — it signals in-group membership and playful mockery without requiring additional punctuation or emoji.
Placeholder text in design work. When you want lorem-ipsum-style placeholder copy that will not be confused for final copy during review, mocking case text is visually distinctive enough that nobody mistakes it for approved content.
Code comments and internal tools. Internal developer dashboards sometimes use alternating case in warning banners or temporary labels (dO nOt DePlOy On FrIdAy) as a tongue-in-cheek way to draw attention to a caution.
Tips and examples
Use alternating mode when you need a result you can reproduce exactly, for example in a saved meme template. Use random mode for a more natural, uneven mocking look. The output is plain text, so it works anywhere: chat apps, social posts, code comments, or document titles. Numbers and emoji are preserved, which keeps hashtags and handles intact.