HTML Entity for Right Harpoon Over Left Harpoon (⇌)

What You'll Learn
How to display the Right Harpoon Over Left Harpoon (⇌) in HTML using the named entity, hexadecimal, decimal, and CSS escape methods. This symbol is U+21CC (RIGHTWARDS HARPOON OVER LEFTWARDS HARPOON) in the Arrows block (U+2190–U+21FF)—a stacked pair of harpoons (right over left) used for reversible chemical reactions, equilibrium notation, and bidirectional arrows in math and science.
Render it with ⇌ (named), ⇌, ⇌, or CSS \21CC. Related: U+21CB (⇋, left harpoon over right / ⇋), U+21C0 (⇀, right harpoon barb up / ⇀).
⚡ Quick Reference — Right Harpoon Over Left Harpoon
U+21CCArrows block
⇌Hexadecimal reference
⇌Decimal reference
⇌Most readable option
Name Value
──────────── ──────────
Unicode U+21CC
Hex code ⇌
HTML code ⇌
Named entity ⇌
CSS code \21CC
Meaning Rightwards harpoon over leftwards harpoon
Related U+21CB = left harpoon over right (⇋)
U+21C0 = right harpoon barb up (⇀)Complete HTML Example
A simple example showing the Right Harpoon Over Left Harpoon (⇌) using the named entity, hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\21CC";
}
</style>
</head>
<body>
<p>Symbol using Hexadecimal: ⇌</p>
<p>Symbol using HTML Code: ⇌</p>
<p>Symbol using HTML Entity: ⇌</p>
<p id="point">Symbol using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Right Harpoon Over Left Harpoon (⇌) renders in modern browsers when the font includes Arrows block glyphs:
👀 Live Preview
See the Right Harpoon Over Left Harpoon (⇌) in chemistry and math contexts:
🧠 How It Works
Named HTML Entity
⇌ is the named entity for the Right Harpoon Over Left Harpoon (rightwards harpoon over leftwards harpoon). Easy to read in math and logic markup.
Hexadecimal Code
⇌ uses the Unicode hexadecimal value 21CC. The x prefix indicates hexadecimal format.
Decimal HTML Code
⇌ uses the decimal Unicode value 8652 for the same symbol.
CSS Entity
\21CC is used in CSS stylesheets in the content property of pseudo-elements like ::after.
Same visual result
All four methods produce ⇌. Unicode U+21CC is in the Arrows block. Previous: Right Harpoon Barb Up To Bar.
Use Cases
The Right Harpoon Over Left Harpoon (⇌) is commonly used in:
Reversible relations and equilibrium notation in math and chemistry.
Bidirectional morphisms and commutative diagrams with harpoon pairs.
Chemical equilibrium arrows and reversible process diagrams.
Illustrate stacked harpoon symbols in guides and reference material.
Reversible inference or two-way logical relations in formal writing.
Document and teach HTML entity usage for Arrows block symbols.
💡 Best Practices
Do
- Prefer
⇌in HTML for readability - Use fonts that support the Arrows block (U+21CC)
- Set
<meta charset="utf-8"> - Pair ⇌ with context (math, logic) so meaning is clear
- Keep one encoding style per project for consistency
- Distinguish ⇌ from ⇋ and ⇀ when stacked vs single harpoons matter
Don’t
- Confuse
⇌(U+21CC, right over left) with⇋(U+21CB, left over right) - Confuse
⇌(U+21CC) with⇀(U+21C0, single right harpoon barb up) - Use CSS
\21CCinside HTML text nodes - Assume all fonts render harpoon glyphs identically
- Mix named and numeric entities inconsistently in the same component
Key Takeaways
Four ways to render U+21CC in HTML and CSS
⇌ ⇌ ⇌For CSS, use \21CC in the content property
Unicode U+21CC — RIGHTWARDS HARPOON OVER LEFTWARDS HARPOON
Arrows block (U+2190–U+21FF) — named entity ⇌
❓ Frequently Asked Questions
⇌ (named), ⇌ (hex), ⇌ (decimal), or \21CC in CSS content. All four methods render ⇌ correctly.U+21CC (RIGHTWARDS HARPOON OVER LEFTWARDS HARPOON). Arrows block (U+2190–U+21FF). Hex 21CC, decimal 8652. A stacked pair of harpoons with the right harpoon above the left.⇌, ⇌, ⇌) go in markup. The CSS escape \21CC is used in stylesheets, typically on ::before or ::after. Both produce ⇌.⇌ is the named HTML entity for U+21CC. You can also use ⇌ (decimal) or ⇌ (hex) and \21CC in CSS.Explore More HTML Entities!
Discover 1500+ HTML character references — arrows, symbols, math operators, and more.
8 people found this page helpful
