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

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+2955

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

Unicode U+2955

Supplemental Arrows-B

Hex Code ⥕

Hexadecimal reference

HTML Code ⥕

Decimal reference

Named Entity

Use numeric codes only

Reference Table
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 bar
1

Complete HTML Example

This example demonstrates the Down Harpoon With Barb Right To Bar (⥕) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2955";
  }
 </style>
</head>
<body>
<p>Down Harpoon With Barb Right To Bar using Hexadecimal: &#x2955;</p>
<p>Down Harpoon With Barb Right To Bar using HTML Code: &#10581;</p>
<p id="point">Down Harpoon With Barb Right To Bar using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+2955 is supported in modern browsers when rendered with a font that includes Supplemental Arrows-B:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See the Down Harpoon With Barb Right To Bar (⥕) in math and diagram contexts:

Large glyph
To bar f(x) ⥕ ―
vs from bar ⥕ to bar   ⥝ from bar
vs barb right only ⥕ to bar   ⇂ plain
Numeric refs &#x2955; &#10581;

🧠 How It Works

1

Hexadecimal Code

&#x2955; uses the Unicode hexadecimal value 2955 to display the Down Harpoon With Barb Right To Bar. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#10581; uses the decimal Unicode value 10581 to display the same character.

HTML markup
3

CSS Entity

\2955 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

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:

∑ Math notation

Limits to a bar, or down-to-bar relations in mathematics.

⊢ Logic and proofs

Formal logic or proof notation where a harpoon to bar is required.

📊 Diagrams

Technical diagrams and specs that use harpoon-to-bar symbols.

📊 Flowcharts

Flow downward to a bar in process and logic diagrams.

📖 Documentation

Explain to-bar or reduction in developer and academic docs.

💻 Web design

Symbol pickers or design systems that include harpoon characters.

💡 Best Practices

Do

  • Use &#x2955; or &#10581; consistently in markup
  • Add aria-label when the symbol means to bar or down to bar
  • Pair ⥕ with a legend in technical documents
  • Use \2955 in CSS ::before / ::after for 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 ⇂ (&dharr;, barb right only)
  • Put CSS escape \2955 in HTML text nodes
  • Rely on the symbol alone in accessibility-critical UIs
  • Assume decorative fonts include all Supplemental Arrows-B glyphs

Key Takeaways

1

Two HTML numeric references render ⥕

&#x2955; &#10581;
2

For CSS stylesheets, use the escape in the content property

\2955
3

Unicode U+2955 — DOWNWARDS HARPOON WITH BARB RIGHT TO BAR

4

Supplemental Arrows-B block (U+2900–U+297F)

5

Three methods, one glyph — widely supported in modern browsers

❓ Frequently Asked Questions

Use &#x2955; (hex), &#10581; (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.
In mathematical notation, diagrams, technical documents, and specialized content where a harpoon to bar (down-to-bar relations or limits) is needed.
HTML references (&#10581; or &#x2955;) 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.
Named entities cover common ASCII, Latin-1, and frequently used symbols. Supplemental harpoon characters use numeric references only. Use &#x2955; or &#10581; in HTML.

Explore More HTML Entities!

Discover 1500+ HTML character references — arrows, symbols, math operators, and more.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful