HTML Entity for Left Harpoon Barb Up Above Long Dash (⥪)

What You'll Learn
How to display the Left Harpoon Barb Up Above Long Dash (⥪) in HTML using the named entity, hexadecimal, decimal, and CSS escape methods. This symbol is U+296A (LEFTWARDS HARPOON WITH BARB UP ABOVE LONG DASH) in the Supplemental Arrows-B block (U+2900–U+297F)—a left-pointing harpoon with barb up and a long dash above, used in mathematical notation, logic, and technical writing.
Render it with ⥪ (named), ⥪, ⥪, or CSS \296A. Related: U+296B (⥫, left harpoon barb down below long dash), U+21BC (↼, left harpoon barb up / ↼).
⚡ Quick Reference — Left Harpoon Barb Up Above Long Dash
U+296ASupplemental Arrows-B
⥪Hexadecimal reference
⥪Decimal reference
⥪Most readable option
Name Value
──────────── ──────────
Unicode U+296A
Hex code ⥪
HTML code ⥪
Named entity ⥪
CSS code \296A
Meaning Leftwards harpoon with barb up above long dash
Related U+296B = left harpoon barb down below long dash (⥫)
U+21BC = left harpoon barb up (↼)Complete HTML Example
A simple example showing the Left Harpoon Barb Up Above Long Dash (⥪) using the named entity, hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\296A";
}
</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 Long Dash (⥪) renders in modern browsers when the font includes Supplemental Arrows-B glyphs:
👀 Live Preview
See the Left Harpoon Barb Up Above Long Dash (⥪) in math and technical contexts:
🧠 How It Works
Named HTML Entity
⥪ is the named entity for the leftwards harpoon with barb up above long dash. Easy to read in math and technical markup.
Hexadecimal Code
⥪ uses the Unicode hexadecimal value 296A. The x prefix indicates hexadecimal format.
Decimal HTML Code
⥪ uses the decimal Unicode value 10602 for the same symbol.
CSS Entity
\296A is used in CSS stylesheets in the content property of pseudo-elements like ::after.
Same visual result
All four methods produce ⥪. Unicode U+296A is in Supplemental Arrows-B. Previous: Left Harpoon Barb Up Above Left Harpoon Barb Down.
Use Cases
The Left Harpoon Barb Up Above Long Dash (⥪) is commonly used in:
Specialized harpoon-and-dash notation in math and scientific documents.
Commutative diagrams and formal proofs with extended arrow notation.
Show direction or relationships with harpoon-and-dash variants.
Illustrate Supplemental Arrows-B symbols in guides and reference material.
Distinct left harpoon with long dash 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+296A)
- Set
<meta charset="utf-8"> - Pair ⥪ with explanatory context for accessibility
- Keep one encoding style per project for consistency
- Distinguish ⥪ from ⥫ and ↼ when symbol meaning matters
Don’t
- Confuse
⥪(U+296A) with↼(U+21BC, simple left harpoon barb up) - Confuse ⥪ with ⥫ (harpoon below long dash, not above)
- Use CSS
\296Ainside 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+296A in HTML and CSS
⥪ ⥪ ⥪For CSS, use \296A in the content property
Unicode U+296A — LEFTWARDS HARPOON WITH BARB UP ABOVE LONG DASH
Supplemental Arrows-B block (U+2900–U+297F) — named entity ⥪
❓ Frequently Asked Questions
⥪ (named), ⥪ (hex), ⥪ (decimal), or \296A in CSS content. All four methods render ⥪ correctly.U+296A (LEFTWARDS HARPOON WITH BARB UP ABOVE LONG DASH). Supplemental Arrows-B block (U+2900–U+297F). Hex 296A, decimal 10602.⥪, ⥪, ⥪) go in markup. The CSS escape \296A is used in stylesheets, typically on ::before or ::after. Both produce ⥪.⥪ is the named HTML entity for U+296A. You can also use ⥪ (decimal) or ⥪ (hex) and \296A in CSS.Explore More HTML Entities!
Discover 1500+ HTML character references — arrows, symbols, math operators, and more.
8 people found this page helpful
