HTML Entity for Left Harpoon Over Right Harpoon (⇋)

What You'll Learn
How to display the Left Harpoon Over Right Harpoon (⇋) in HTML using the named entity, hexadecimal, decimal, and CSS escape methods. This symbol is U+21CB (LEFTWARDS HARPOON OVER RIGHTWARDS HARPOON) in the Arrows block (U+2190–U+21FF)—a stacked pair of harpoons (left over right) used for reversible relations, equilibrium notation, and bidirectional arrows in math and logic.
Render it with ⇋ (named), ⇋, ⇋, or CSS \21CB. Related: U+21BC (↼, left harpoon barb up / ↼), U+21BD (↽, left harpoon barb down / ↽).
⚡ Quick Reference — Left Harpoon Over Right Harpoon
U+21CBArrows block
⇋Hexadecimal reference
⇋Decimal reference
⇋Most readable option
Name Value
──────────── ──────────
Unicode U+21CB
Hex code ⇋
HTML code ⇋
Named entity ⇋
CSS code \21CB
Meaning Leftwards harpoon over rightwards harpoon
Related U+21BC = left harpoon barb up (↼)
U+21BD = left harpoon barb down (↽)Complete HTML Example
A simple example showing the Left Harpoon Over Right Harpoon (⇋) using the named entity, hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\21CB";
}
</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 Left Harpoon Over Right Harpoon (⇋) renders in modern browsers when the font includes Arrows block glyphs:
👀 Live Preview
See the Left Harpoon Over Right Harpoon (⇋) in math and logic contexts:
🧠 How It Works
Named HTML Entity
⇋ is the named entity for the Left Harpoon Over Right Harpoon (leftwards harpoon over rightwards harpoon). Easy to read in math and logic markup.
Hexadecimal Code
⇋ uses the Unicode hexadecimal value 21CB. The x prefix indicates hexadecimal format.
Decimal HTML Code
⇋ uses the decimal Unicode value 8651 for the same symbol.
CSS Entity
\21CB is used in CSS stylesheets in the content property of pseudo-elements like ::after.
Same visual result
All four methods produce ⇋. Unicode U+21CB is in the Arrows block. Previous: Left Harpoon Barb Up To Bar.
Use Cases
The Left Harpoon Over Right 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+21CB)
- 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 single vs stacked harpoons matter
Don’t
- Confuse
⇋(U+21CB, left over right) with⇌(U+21CC, right over left) - Confuse
⇋(U+21CB) with↼(U+21BC, single left harpoon barb up) - Use CSS
\21CBinside 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+21CB in HTML and CSS
⇋ ⇋ ⇋For CSS, use \21CB in the content property
Unicode U+21CB — LEFTWARDS HARPOON OVER RIGHTWARDS HARPOON
Arrows block (U+2190–U+21FF) — named entity ⇋
Previous: Left Harpoon Barb Up To Bar (⥒) Next: Left Normal Factor Semidirect Product
❓ Frequently Asked Questions
⇋ (named), ⇋ (hex), ⇋ (decimal), or \21CB in CSS content. All four methods render ⇋ correctly.U+21CB (LEFTWARDS HARPOON OVER RIGHTWARDS HARPOON). Arrows block (U+2190–U+21FF). Hex 21CB, decimal 8651. A stacked pair of harpoons with the left harpoon above the right.⇋, ⇋, ⇋) go in markup. The CSS escape \21CB is used in stylesheets, typically on ::before or ::after. Both produce ⇋.⇋ is the named HTML entity for U+21CB. You can also use ⇋ (decimal) or ⇋ (hex) and \21CB in CSS.Explore More HTML Entities!
Discover 1500+ HTML character references — arrows, symbols, math operators, and more.
8 people found this page helpful
