HTML Entity for Right Harpoon Barb Down Above Left Harpoon Barb Down (⥩)

What You'll Learn
How to display the Right Harpoon Barb Down Above Left Harpoon Barb Down (⥩) in HTML using the named entity, hexadecimal, decimal, and CSS escape methods. This symbol is U+2969 (RIGHTWARDS HARPOON WITH BARB DOWN ABOVE LEFTWARDS HARPOON WITH BARB DOWN) in the Supplemental Arrows-B block (U+2900–U+297F)—a combined harpoon pair used in mathematical notation and chemistry (equilibrium or reversible reactions).
Render it with ⥩ (named), ⥩, ⥩, or CSS \2969. Related: U+21C1 (⇁, right harpoon barb down / ⇁), U+2967 (⥧, left harpoon barb down above right / ⥧).
⚡ Quick Reference — Right Harpoon Barb Down Above Left Harpoon Barb Down
U+2969Supplemental Arrows-B
⥩Hexadecimal reference
⥩Decimal reference
⥩Most readable option
Name Value
──────────── ──────────
Unicode U+2969
Hex code ⥩
HTML code ⥩
Named entity ⥩
CSS code \2969
Meaning Right harpoon barb down above left harpoon barb down
Related U+21C1 = right harpoon barb down (⇁)
U+2967 = left harpoon barb down above right (⥧)Complete HTML Example
A simple example showing the Right Harpoon Barb Down Above Left Harpoon Barb Down (⥩) using the named entity, hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2969";
}
</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 Barb Down Above Left Harpoon Barb Down (⥩) renders in modern browsers when the font includes Supplemental Arrows-B glyphs:
👀 Live Preview
See the Right Harpoon Barb Down Above Left Harpoon Barb Down (⥩) in math and chemistry contexts:
🧠 How It Works
Named HTML Entity
⥩ is the named entity for this combined harpoon symbol (right harpoon barb down above left harpoon barb down). Easy to read in math and chemistry markup.
Hexadecimal Code
⥩ uses the Unicode hexadecimal value 2969. The x prefix indicates hexadecimal format.
Decimal HTML Code
⥩ uses the decimal Unicode value 10601 for the same symbol.
CSS Entity
\2969 is used in CSS stylesheets in the content property of pseudo-elements like ::after.
Same visual result
All four methods produce ⥩. Unicode U+2969 is in Supplemental Arrows-B. Previous: Right Harpoon Barb Down.
Use Cases
The Right Harpoon Barb Down Above Left Harpoon Barb Down (⥩) is commonly used in:
Equilibrium and reversible reactions in chemical equations.
Combined harpoon notation in math, logic, and scientific documents.
Show bidirectional or equilibrium relationships with harpoon pairs.
Illustrate specialized Supplemental Arrows-B symbols in guides.
Distinct combined harpoon symbol 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+2969)
- Set
<meta charset="utf-8"> - Pair ⥩ with context (equilibrium, reversible reaction) for clarity
- Keep one encoding style per project for consistency
- Distinguish ⥩ from ⥧ and ⇁ when symbol meaning matters
Don’t
- Confuse
⥩(U+2969) with⇁(U+21C1, single right harpoon) - Confuse
⥩with⥧(U+2967, mirror left-above-right pair) - Use CSS
\2969inside 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+2969 in HTML and CSS
⥩ ⥩ ⥩For CSS, use \2969 in the content property
Unicode U+2969 — RIGHTWARDS HARPOON WITH BARB DOWN ABOVE LEFTWARDS HARPOON WITH BARB DOWN
Supplemental Arrows-B block (U+2900–U+297F) — named entity ⥩
Previous: Right Harpoon Barb Down (⇁) Next: Right Harpoon Barb Up
❓ Frequently Asked Questions
⥩ (named), ⥩ (hex), ⥩ (decimal), or \2969 in CSS content. All four methods render ⥩ correctly.U+2969 (RIGHTWARDS HARPOON WITH BARB DOWN ABOVE LEFTWARDS HARPOON WITH BARB DOWN). Supplemental Arrows-B block (U+2900–U+297F). Hex 2969, decimal 10601.⥩, ⥩, ⥩) go in markup. The CSS escape \2969 is used in stylesheets, typically on ::before or ::after. Both produce ⥩.⥩ is the named HTML entity for U+2969. You can also use ⥩ (decimal) or ⥩ (hex) and \2969 in CSS.Explore More HTML Entities!
Discover 1500+ HTML character references — arrows, symbols, math operators, and more.
8 people found this page helpful
