HTML Entity for Right Harpoon With Barb Up Above Long Dash (⥬)

What You'll Learn
How to display the Right Harpoon With Barb Up Above Long Dash (⥬) in HTML using the named entity, hexadecimal, decimal, and CSS escape methods. This symbol is U+296C (RIGHTWARDS HARPOON WITH BARB UP ABOVE LONG DASH) in the Supplemental Arrows-B block (U+2900–U+297F)—a right-pointing harpoon with barb up and a long dash above, used in mathematical notation, logic, and technical writing.
Render it with ⥬ (named), ⥬, ⥬, or CSS \296C. Related: U+296D (⥭, right harpoon with barb down below long dash), U+21C0 (⇀, right harpoon barb up / ⇀).
⚡ Quick Reference — Right Harpoon With Barb Up Above Long Dash
U+296CSupplemental Arrows-B
⥬Hexadecimal reference
⥬Decimal reference
⥬Most readable option
Name Value
──────────── ──────────
Unicode U+296C
Hex code ⥬
HTML code ⥬
Named entity ⥬
CSS code \296C
Meaning Rightwards harpoon with barb up above long dash
Related U+296D = right harpoon with barb down below long dash (⥭)
U+21C0 = right harpoon barb up (⇀)Complete HTML Example
A simple example showing the Right Harpoon With 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: "\296C";
}
</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 Long Dash (⥬) renders in modern browsers when the font includes Supplemental Arrows-B glyphs:
👀 Live Preview
See the Right Harpoon With Barb Up Above Long Dash (⥬) in math and technical contexts:
🧠 How It Works
Named HTML Entity
⥬ is the named entity for the rightwards harpoon with barb up above long dash. Easy to read in math and technical markup.
Hexadecimal Code
⥬ uses the Unicode hexadecimal value 296C. The x prefix indicates hexadecimal format.
Decimal HTML Code
⥬ uses the decimal Unicode value 10604 for the same symbol.
CSS Entity
\296C is used in CSS stylesheets in the content property of pseudo-elements like ::after.
Same visual result
All four methods produce ⥬. Unicode U+296C is in Supplemental Arrows-B. Previous: Right Harpoon With Barb Down To Bar.
Use Cases
The Right Harpoon With 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 right 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+296C)
- 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+296C) with⇀(U+21C0, simple right harpoon barb up) - Confuse ⥬ with ⥭ (harpoon below long dash, not above)
- Use CSS
\296Cinside 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+296C in HTML and CSS
⥬ ⥬ ⥬For CSS, use \296C in the content property
Unicode U+296C — RIGHTWARDS HARPOON WITH BARB UP ABOVE LONG DASH
Supplemental Arrows-B block (U+2900–U+297F) — named entity ⥬
❓ Frequently Asked Questions
⥬ (named), ⥬ (hex), ⥬ (decimal), or \296C in CSS content. All four methods render ⥬ correctly.U+296C (RIGHTWARDS HARPOON WITH BARB UP ABOVE LONG DASH). Supplemental Arrows-B block (U+2900–U+297F). Hex 296C, decimal 10604.⥬, ⥬, ⥬) go in markup. The CSS escape \296C is used in stylesheets, typically on ::before or ::after. Both produce ⥬.⥬ is the named HTML entity for U+296C. You can also use ⥬ (decimal) or ⥬ (hex) and \296C in CSS.Explore More HTML Entities!
Discover 1500+ HTML character references — arrows, symbols, math operators, and more.
8 people found this page helpful
