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

What You'll Learn
How to display the Left Harpoon Barb Down Above Right Harpoon Barb Down (⥧) in HTML using the named entity, hexadecimal, decimal, and CSS escape methods. This symbol is U+2967 (LEFTWARDS HARPOON WITH BARB DOWN ABOVE RIGHTWARDS 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 \2967. Related: U+21BD (↽, left harpoon barb down / ↽), U+2950 (⥐, left barb down right barb down harpoon).
⚡ Quick Reference — Left Harpoon Barb Down Above Right Harpoon Barb Down
U+2967Supplemental Arrows-B
⥧Hexadecimal reference
⥧Decimal reference
⥧Most readable option
Name Value
──────────── ──────────
Unicode U+2967
Hex code ⥧
HTML code ⥧
Named entity ⥧
CSS code \2967
Meaning Left harpoon barb down above right harpoon barb down
Related U+21BD = left harpoon barb down (↽)
U+2950 = left barb down right barb down harpoon (⥐)Complete HTML Example
A simple example showing the Left Harpoon Barb Down Above Right 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: "\2967";
}
</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 Barb Down Above Right Harpoon Barb Down (⥧) renders in modern browsers when the font includes Supplemental Arrows-B glyphs:
👀 Live Preview
See the Left Harpoon Barb Down Above Right Harpoon Barb Down (⥧) in math and chemistry contexts:
🧠 How It Works
Named HTML Entity
⥧ is the named entity for this combined harpoon symbol (left harpoon barb down above right harpoon barb down). Easy to read in math and chemistry markup.
Hexadecimal Code
⥧ uses the Unicode hexadecimal value 2967. The x prefix indicates hexadecimal format.
Decimal HTML Code
⥧ uses the decimal Unicode value 10599 for the same symbol.
CSS Entity
\2967 is used in CSS stylesheets in the content property of pseudo-elements like ::after.
Same visual result
All four methods produce ⥧. Unicode U+2967 is in Supplemental Arrows-B. Previous: Left Harpoon Barb Down.
Use Cases
The Left Harpoon Barb Down Above Right 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+2967)
- 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+2967) with↽(U+21BD, single left harpoon) - Confuse
⥧with⥋(U+294B, different harpoon pair) - Use CSS
\2967inside 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+2967 in HTML and CSS
⥧ ⥧ ⥧For CSS, use \2967 in the content property
Unicode U+2967 — LEFTWARDS HARPOON WITH BARB DOWN ABOVE RIGHTWARDS HARPOON WITH BARB DOWN
Supplemental Arrows-B block (U+2900–U+297F) — named entity ⥧
Previous: Left Harpoon Barb Down (↽) Next: Left Harpoon Barb Down Below Long Dash
❓ Frequently Asked Questions
⥧ (named), ⥧ (hex), ⥧ (decimal), or \2967 in CSS content. All four methods render ⥧ correctly.U+2967 (LEFTWARDS HARPOON WITH BARB DOWN ABOVE RIGHTWARDS HARPOON WITH BARB DOWN). Supplemental Arrows-B block (U+2900–U+297F). Hex 2967, decimal 10599.⥧, ⥧, ⥧) go in markup. The CSS escape \2967 is used in stylesheets, typically on ::before or ::after. Both produce ⥧.⥧ is the named HTML entity for U+2967. You can also use ⥧ (decimal) or ⥧ (hex) and \2967 in CSS.Explore More HTML Entities!
Discover 1500+ HTML character references — arrows, symbols, math operators, and more.
8 people found this page helpful
