HTML Entity for Down Harpoon Barb Left Beside Up Harpoon Barb Right (⥯)

What You'll Learn
How to display the Down Harpoon Barb Left Beside Up Harpoon Barb Right (⥯) in HTML using hexadecimal, decimal, the named entity ⥯, and CSS escape methods. This character is U+296F (DOWNWARDS HARPOON WITH BARB LEFT BESIDE UPWARDS HARPOON WITH BARB RIGHT) in the Supplemental Arrows-B block (U+2900–U+297F)—a down harpoon with barb left beside an up harpoon with barb right, used in math, logic, and technical documents.
Render it with ⥯, ⥯, ⥯, or CSS escape \296F. For a single down fish-tail style arrow see ⥿ (U+297F). For a plain down arrow use ↓ (↓).
⚡ Quick Reference — Down Harpoon Barb Left Beside Up Harpoon Barb Right
U+296FSupplemental Arrows-B
⥯Hexadecimal reference
⥯Decimal reference
⥯HTML5 named entity for U+296F
Name Value
──────────── ──────────
Unicode U+296F
Hex code ⥯
HTML code ⥯
Named entity ⥯
CSS code \296F
Related U+297F = Down fish tail; U+2193 = Down arrow (↓)Complete HTML Example
This example demonstrates the Down Harpoon Barb Left Beside Up Harpoon Barb Right (⥯) using hexadecimal code, decimal HTML code, the named entity ⥯, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\296F";
}
</style>
</head>
<body>
<p>Down Harpoon Barb Left Beside Up Harpoon Barb Right using Hexadecimal: ⥯</p>
<p>Down Harpoon Barb Left Beside Up Harpoon Barb Right using HTML Code: ⥯</p>
<p>Down Harpoon Barb Left Beside Up Harpoon Barb Right using HTML Entity: ⥯</p>
<p id="point">Down Harpoon Barb Left Beside Up Harpoon Barb Right using CSS Entity: </p>
</body>
</html>🌐 Browser Support
U+296F is supported in modern browsers when rendered with a font that includes Supplemental Arrows-B:
👀 Live Preview
See the Down Harpoon Barb Left Beside Up Harpoon Barb Right (⥯) in math and logic contexts:
🧠 How It Works
Hexadecimal Code
⥯ uses the Unicode hexadecimal value 296F to display the Down Harpoon Barb Left Beside Up Harpoon Barb Right. The x prefix indicates hexadecimal format.
Decimal HTML Code
⥯ uses the decimal Unicode value 10607 to display the same character.
Named HTML Entity
⥯ is the HTML5 named entity for U+296F (down-up harpoon). It is easy to read in source and resolves to ⥯.
CSS Entity
\296F is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All four methods produce: ⥯. Unicode U+296F. Fish tail: ⥿ (U+297F). Serve HTML as UTF-8.
Use Cases
The Down Harpoon Barb Left Beside Up Harpoon Barb Right (⥯) is commonly used in:
Paired down/up harpoons, limits, or bidirectional relations in mathematics.
Formal logic or proof notation where down/up harpoon pairs are required.
Specifications or flows that use harpoon symbol pairs.
Bidirectional or paired flow in process and logic diagrams.
Papers and specs for harpoon-style arrow notation.
Symbol pickers or design systems that include harpoon characters.
💡 Best Practices
Do
- Use
⥯for readable markup, or⥯/⥯ - Add
aria-labelwhen the symbol means down-up harpoon or paired harpoons - Pair ⥯ with a legend in technical documents
- Use
\296Fin CSS::before/::afterfor harpoon icons - Serve pages with UTF-8 (
<meta charset="utf-8">)
Don’t
- Confuse
⥯(⥯) with ⥿ (down fish tail, U+297F) - Confuse ⥯ with ↓ (
↓, plain down) - Put CSS escape
\296Fin HTML text nodes - Rely on the symbol alone in accessibility-critical UIs
- Assume decorative fonts include all Supplemental Arrows-B glyphs
Key Takeaways
Named entity available: ⥯
⥯ ⥯For CSS stylesheets, use the escape in the content property
\296FUnicode U+296F — DOWNWARDS HARPOON WITH BARB LEFT BESIDE UPWARDS HARPOON WITH BARB RIGHT
Not the same as fish tail ⥿ (U+297F, no named entity)
Four methods, one glyph — widely supported in modern browsers
❓ Frequently Asked Questions
⥯ (hex), ⥯ (decimal), ⥯ (named entity), or \296F in CSS content. All produce ⥯.U+296F (DOWNWARDS HARPOON WITH BARB LEFT BESIDE UPWARDS HARPOON WITH BARB RIGHT). Supplemental Arrows-B (U+2900–U+297F). Hex 296F, decimal 10607. A down harpoon with barb left beside an up harpoon with barb right.⥯ is easier to read in source than ⥯ or ⥯, but all produce ⥯. The CSS escape \296F is used in stylesheets in the content property of pseudo-elements.⥯ is the Down Harpoon Barb Left Beside Up Harpoon Barb Right (⥯, U+296F)—a paired down and up harpoon. The Down Fish Tail (⥿, U+297F) is a single downward harpoon-style arrow. They are different Unicode characters used in different notation contexts.Explore More HTML Entities!
Discover 1500+ HTML character references — arrows, symbols, math operators, and more.
8 people found this page helpful
