HTML Entity for Right Harpoon With Barb Up Above Right Harpoon With Barb Down (⥤)

What You'll Learn
How to display the Right Harpoon With Barb Up Above Right Harpoon With Barb Down (⥤) in HTML using the named entity, hexadecimal, decimal, and CSS escape methods. This symbol is U+2964 (RIGHTWARDS HARPOON WITH BARB UP ABOVE RIGHTWARDS HARPOON WITH BARB DOWN) in the Supplemental Arrows-B block (U+2900–U+297F)—a stacked right harpoon pair with barb up above barb down, used in mathematical notation, logic, and commutative diagrams.
Render it with ⥤ (named), ⥤, ⥤, or CSS \2964. Related: U+21C0 (⇀, right harpoon barb up / ⇀), U+21C1 (⇁, right harpoon barb down / ⇁).
⚡ Quick Reference — Right Harpoon With Barb Up Above Right Harpoon With Barb Down
U+2964Supplemental Arrows-B
⥤Hexadecimal reference
⥤Decimal reference
⥤Most readable option
Name Value
──────────── ──────────
Unicode U+2964
Hex code ⥤
HTML code ⥤
Named entity ⥤
CSS code \2964
Meaning Right harpoon with barb up above right harpoon with barb down
Related U+21C0 = right harpoon barb up (⇀)
U+21C1 = right harpoon barb down (⇁)Complete HTML Example
A simple example showing the Right Harpoon With Barb Up Above Right Harpoon With Barb Down (⥤) using the named entity, hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2964";
}
</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 With Barb Up Above Right Harpoon With Barb Down (⥤) renders in modern browsers when the font includes Supplemental Arrows-B glyphs:
👀 Live Preview
See the Right Harpoon With Barb Up Above Right Harpoon With Barb Down (⥤) in math and logic contexts:
🧠 How It Works
Named HTML Entity
⥤ is the named entity for this combined harpoon symbol (right harpoon with barb up above right harpoon with barb down). Easy to read in math and logic markup.
Hexadecimal Code
⥤ uses the Unicode hexadecimal value 2964. The x prefix indicates hexadecimal format.
Decimal HTML Code
⥤ uses the decimal Unicode value 10596 for the same symbol.
CSS Entity
\2964 is used in CSS stylesheets in the content property of pseudo-elements like ::after.
Same visual result
All four methods produce ⥤. Unicode U+2964 is in Supplemental Arrows-B. Previous: Right Harpoon With Barb Up Above Long Dash.
Use Cases
The Right Harpoon With Barb Up Above Right Harpoon With Barb Down (⥤) is commonly used in:
Combined harpoon notation in math, logic, and scientific documents.
Commutative diagrams and formal proofs with paired harpoon arrows.
Show bidirectional or paired relationships with stacked harpoon symbols.
Illustrate specialized Supplemental Arrows-B symbols in guides.
Distinct stacked harpoon pair in scientific UI and labels.
Document and teach HTML entity usage for harpoon symbols.
💡 Best Practices
Do
- Prefer
⥤in HTML for readability - Use fonts that support Supplemental Arrows-B (U+2964)
- 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 single harpoons when symbol meaning matters
Don’t
- Confuse
⥤(U+2964) with⥩(U+2969, different harpoon pair) - Confuse
⥤with⇀or⇁(single harpoons) - Use CSS
\2964inside HTML text nodes - Assume legacy systems render Supplemental Arrows-B without testing
- Mix named and numeric entities inconsistently in the same component
Key Takeaways
Four ways to render U+2964 in HTML and CSS
⥤ ⥤ ⥤For CSS, use \2964 in the content property
Unicode U+2964 — RIGHTWARDS HARPOON WITH BARB UP ABOVE RIGHTWARDS HARPOON WITH BARB DOWN
Supplemental Arrows-B block (U+2900–U+297F) — named entity ⥤
❓ Frequently Asked Questions
⥤ (named), ⥤ (hex), ⥤ (decimal), or \2964 in CSS content. All four methods render ⥤ correctly.U+2964 (RIGHTWARDS HARPOON WITH BARB UP ABOVE RIGHTWARDS HARPOON WITH BARB DOWN). Supplemental Arrows-B block (U+2900–U+297F). Hex 2964, decimal 10596.⥤, ⥤, ⥤) go in markup. The CSS escape \2964 is used in stylesheets, typically on ::before or ::after. Both produce ⥤.⥤ is the named HTML entity for U+2964. You can also use ⥤ (decimal) or ⥤ (hex) and \2964 in CSS.Explore More HTML Entities!
Discover 1500+ HTML character references — arrows, symbols, math operators, and more.
8 people found this page helpful
