HTML Entity for Down Harpoon With Barb Left Beside Down Harpoon With Barb Right (⥥)

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