HTML Entity for Down Harpoon With Barb Right To Bar (⥕)

What You'll Learn
How to display the Down Harpoon With Barb Right To Bar (⥕) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2955 (DOWNWARDS HARPOON WITH BARB RIGHT TO BAR) in the Supplemental Arrows-B block (U+2900–U+297F)—a down harpoon with barb right, ending at a horizontal bar, used in mathematical notation, diagrams, and technical content.
Render it with ⥕, ⥕, or CSS escape \2955. There is no named HTML entity for this symbol. For from-bar use ⥝ (U+295D). For plain barb right use ⇂ (⇂, U+21C2). Mirror: left to bar ⥙ (U+2959).
⚡ Quick Reference — Down Harpoon With Barb Right To Bar
U+2955Supplemental Arrows-B
⥕Hexadecimal reference
⥕Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+2955
Hex code ⥕
HTML code ⥕
Named entity (none)
CSS code \2955
Related U+295D = From bar; U+21C2 = Barb right only (⇂); U+2959 = Left to barComplete HTML Example
This example demonstrates the Down Harpoon With Barb Right To Bar (⥕) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2955";
}
</style>
</head>
<body>
<p>Down Harpoon With Barb Right To Bar using Hexadecimal: ⥕</p>
<p>Down Harpoon With Barb Right To Bar using HTML Code: ⥕</p>
<p id="point">Down Harpoon With Barb Right To Bar using CSS Entity: </p>
</body>
</html>🌐 Browser Support
U+2955 is supported in modern browsers when rendered with a font that includes Supplemental Arrows-B:
👀 Live Preview
See the Down Harpoon With Barb Right To Bar (⥕) in math and diagram contexts:
🧠 How It Works
Hexadecimal Code
⥕ uses the Unicode hexadecimal value 2955 to display the Down Harpoon With Barb Right To Bar. The x prefix indicates hexadecimal format.
Decimal HTML Code
⥕ uses the decimal Unicode value 10581 to display the same character.
CSS Entity
\2955 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All three methods produce: ⥕. Unicode U+2955. No named HTML entity—use numeric codes in markup. Serve HTML as UTF-8.
Use Cases
The Down Harpoon With Barb Right To Bar (⥕) is commonly used in:
Limits to a bar, or down-to-bar relations in mathematics.
Formal logic or proof notation where a harpoon to bar is required.
Technical diagrams and specs that use harpoon-to-bar symbols.
Flow downward to a bar in process and logic diagrams.
Explain to-bar or reduction in developer and academic docs.
Symbol pickers or design systems that include harpoon characters.
💡 Best Practices
Do
- Use
⥕or⥕consistently in markup - Add
aria-labelwhen the symbol means to bar or down to bar - Pair ⥕ with a legend in technical documents
- Use
\2955in CSS::before/::afterfor harpoon-to-bar icons - Serve pages with UTF-8 (
<meta charset="utf-8">)
Don’t
- Expect a named entity—none exists for U+2955
- Confuse ⥕ (to bar) with ⥝ (from bar) or ⇂ (
⇂, barb right only) - Put CSS escape
\2955in HTML text nodes - Rely on the symbol alone in accessibility-critical UIs
- Assume decorative fonts include all Supplemental Arrows-B glyphs
Key Takeaways
Two HTML numeric references render ⥕
⥕ ⥕For CSS stylesheets, use the escape in the content property
\2955Unicode U+2955 — DOWNWARDS HARPOON WITH BARB RIGHT TO BAR
Supplemental Arrows-B block (U+2900–U+297F)
Three methods, one glyph — widely supported in modern browsers
❓ Frequently Asked Questions
⥕ (hex), ⥕ (decimal), or \2955 in CSS content. There is no named entity. All produce ⥕.U+2955 (DOWNWARDS HARPOON WITH BARB RIGHT TO BAR). Supplemental Arrows-B (U+2900–U+297F). Hex 2955, decimal 10581. A down harpoon with barb right, ending at a horizontal bar.⥕ or ⥕) go in markup. The CSS escape \2955 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.⥕ or ⥕ in HTML.Explore More HTML Entities!
Discover 1500+ HTML character references — arrows, symbols, math operators, and more.
8 people found this page helpful
