HTML Entity for Left Harpoon Barb Up Above Left Harpoon Barb Down (⥢)

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