aLtErNaTiNg CaSe Converter
Convert text to aLtErNaTiNg CaSe for a stylistic or mocking effect.
What is aLtErNaTiNg CaSe?
aLtErNaTiNg CaSe (also called mock caps, sponge case, or intercapping) alternates each character between lowercase and uppercase. It originated on the internet as a way to express sarcasm or mock someone's statement in a playful, exaggerated tone.
hello world→hElLo wOrLdWhen to Use aLtErNaTiNg CaSe
Use alternating case for informal, humorous contexts: social media posts expressing sarcasm, meme captions, creative display text where unconventional style is intentional, or stylized logos and brand names.
Never use alternating case in professional documents, email, journalism, academic work, code, or any context where credibility and readability matter. It will undermine the seriousness of your message.
Industry Standard
aLtErNaTiNg CaSe has no formal style guide standard — it is a purely stylistic and cultural format. It became widely recognized through the "Mocking SpongeBob" meme (2017) and is now a recognized internet shorthand for mockery or sarcasm.
How to Use This aLtErNaTiNg CaSe Converter
- Paste or type your text into the Input Text box on the left.
- The output is converted to aLtErNaTiNg CaSe instantly on the right.
- Click Copy to copy the result to your clipboard.
- Use Clear to reset and convert new text.
aLtErNaTiNg CaSe in Programming Languages
str.split('').map((c,i) => i%2===0 ? c.toLowerCase() : c.toUpperCase()).join('')''.join(c.upper() if i%2 else c.lower() for i,c in enumerate(s))Frequently Asked Questions
Is this aLtErNaTiNg CaSe converter free?
Yes, completely free — no signup, no account, no limits.
Does my text get stored or sent anywhere?
No. All conversions happen entirely in your browser using JavaScript. Your text never leaves your device and is never sent to any server.
When should I use aLtErNaTiNg CaSe?
Use alternating case for informal, humorous contexts: social media posts expressing sarcasm, meme captions, creative display text where unconventional style is intentional, or stylized logos and brand names.
Expert tip
If you are designing a logo or display text with alternating caps, consider doing it manually rather than with a pure alternating algorithm — choose which letters to capitalize based on visual balance and aesthetics, not just position.