HTML Entity for Right Harpoon With Barb Down Below Long Dash (⥭)

What You'll Learn
How to display the Right Harpoon With Barb Down Below Long Dash (⥭) in HTML using hexadecimal, decimal, and CSS escape methods. This symbol is U+296D (RIGHTWARDS HARPOON WITH BARB DOWN BELOW LONG DASH) in the Supplemental Arrows-B block (U+2900–U+297F)—a right-pointing harpoon with barb down and a long dash below, used in mathematical notation and technical writing.
Render it with ⥭, ⥭, or CSS \296D. There is no named HTML entity. Related: U+21C1 (⇁, right harpoon barb down / ⇁), U+296B (⥫, left harpoon barb down below long dash).
⚡ Quick Reference — Right Harpoon With Barb Down Below Long Dash
U+296DSupplemental Arrows-B
⥭Hexadecimal reference
⥭Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+296D
Hex code ⥭
HTML code ⥭
Named entity (none)
CSS code \296D
Meaning Rightwards harpoon with barb down below long dash
Related U+21C1 = right harpoon barb down (⇁)
U+296B = left harpoon barb down below long dash (⥫)Complete HTML Example
A simple example showing the Right Harpoon With Barb Down Below Long Dash (⥭) using hexadecimal code, decimal HTML code, and a CSS content escape. There is no named HTML entity:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\296D";
}
</style>
</head>
<body>
<p>Symbol using Hexadecimal: ⥭</p>
<p>Symbol using HTML Code: ⥭</p>
<p id="point">Symbol using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Right Harpoon With Barb Down Below Long Dash (⥭) renders in modern browsers when the font includes Supplemental Arrows-B glyphs:
👀 Live Preview
See the Right Harpoon With Barb Down Below Long Dash (⥭) in math and technical contexts:
🧠 How It Works
Hexadecimal Code
⥭ uses the Unicode hexadecimal value 296D to display the rightwards harpoon with barb down below long dash. The x prefix indicates hexadecimal format.
Decimal HTML Code
⥭ uses the decimal Unicode value 10605 to display the same character.
CSS Entity
\296D is used in CSS stylesheets in the content property of pseudo-elements like ::after for math and technical indicators.
Same visual result
All three methods produce ⥭. Unicode U+296D is in Supplemental Arrows-B. Previous: Right Harpoon Over Left Harpoon.
Use Cases
The Right Harpoon With Barb Down Below Long Dash (⥭) is commonly used in:
Specialized harpoon notation in math and scientific documents.
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.
Extended arrow notation where harpoon-with-dash variants are needed.
Document and teach HTML entity usage for harpoon symbols.
💡 Best Practices
Do
- Use
⥭or⥭in HTML—no named entity exists - Use fonts that support Supplemental Arrows-B (U+296D)
- Set
<meta charset="utf-8"> - Pair ⥭ with explanatory context for accessibility
- Keep one numeric style (hex or decimal) per project
- Distinguish ⥭ from ⇁ and ⥫ when symbol meaning matters
Don’t
- Expect a named HTML entity for U+296D
- Use CSS
\296Dinside HTML text nodes - Confuse ⥭ with ⇁ (simple right harpoon barb down)
- Confuse ⥭ with ⥫ (mirror left harpoon below long dash)
- Assume legacy systems render Supplemental Arrows-B without testing
Key Takeaways
Two HTML numeric references plus CSS for U+296D
⥭ ⥭For CSS, use \296D in the content property
Unicode U+296D — RIGHTWARDS HARPOON WITH BARB DOWN BELOW LONG DASH
Supplemental Arrows-B block (U+2900–U+297F) — no named entity
Previous: Right Harpoon Over Left Harpoon (⇌) Next: Right Harpoon With Barb Down From Bar
❓ Frequently Asked Questions
⥭ (hex), ⥭ (decimal), or \296D in CSS content. There is no named entity. All three methods render ⥭ correctly.U+296D (RIGHTWARDS HARPOON WITH BARB DOWN BELOW LONG DASH). Supplemental Arrows-B block (U+2900–U+297F). Hex 296D, decimal 10605.⥭ or ⥭) go in markup. The CSS escape \296D is used in stylesheets, typically on ::before or ::after. Both produce ⥭.⥭) or decimal (⥭) codes. That is standard for such symbols in HTML.Explore More HTML Entities!
Discover 1500+ HTML character references — arrows, symbols, math operators, and more.
8 people found this page helpful
