HTML Entity for Down Harpoon With Barb Right From Bar (⥝)

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

What You'll Learn

How to display the Down Harpoon With Barb Right From Bar (⥝) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+295D (DOWNWARDS HARPOON WITH BARB RIGHT FROM BAR) in the Supplemental Arrows-B block (U+2900–U+297F)—a down harpoon with barb right, originating from a horizontal bar, used in scientific texts, mathematical notation, and specialized content.

Render it with ⥝, ⥝, or CSS escape \295D. There is no named HTML entity for this symbol. For a plain down harpoon with barb right (no bar) use ⇂ (⇂, U+21C2). Mirror: left from bar ⥡ (U+2961).

⚡ Quick Reference — Down Harpoon With Barb Right From Bar

Unicode U+295D

Supplemental Arrows-B

Hex Code ⥝

Hexadecimal reference

HTML Code ⥝

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+295D
Hex code       ⥝
HTML code      ⥝
Named entity   (none)
CSS code       \295D
Related        U+21C2 = Barb right only (⇂); U+2961 = Left from bar; U+2959 = To bar
1

Complete HTML Example

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

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

🌐 Browser Support

U+295D 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 From Bar (⥝) in scientific and math contexts:

Large glyph
From bar ― ⥝ limit
vs barb right only ⥝ from bar   ⇂ plain
In notation bar ⥝ f(x)
Numeric refs &#x295D; &#10589;

🧠 How It Works

1

Hexadecimal Code

&#x295D; uses the Unicode hexadecimal value 295D to display the Down Harpoon With Barb Right From Bar. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\295D 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+295D. No named HTML entity—use numeric codes in markup. Serve HTML as UTF-8.

Use Cases

The Down Harpoon With Barb Right From Bar (⥝) is commonly used in:

∑ Math notation

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

⊢ Logic and proofs

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

📄 Scientific content

Technical flows and specs that use harpoon-from-bar symbols.

📊 Flowcharts

Flow downward from a bar in process and logic diagrams.

📖 Documentation

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

💻 Symbol libraries

Symbol pickers or design systems that include harpoon characters.

💡 Best Practices

Do

  • Use &#x295D; or &#10589; consistently in markup
  • Add aria-label when the symbol means from bar or down from bar
  • Pair ⥝ with a legend in technical documents
  • Use \295D in CSS ::before / ::after for harpoon-from-bar icons
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Expect a named entity—none exists for U+295D
  • Confuse ⥝ (from bar) with ⇂ (&dharr;, barb right only)
  • Put CSS escape \295D 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 ⥝

&#x295D; &#10589;
2

For CSS stylesheets, use the escape in the content property

\295D
3

Unicode U+295D — DOWNWARDS HARPOON WITH BARB RIGHT FROM BAR

4

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

5

Three methods, one glyph — widely supported in modern browsers

❓ Frequently Asked Questions

Use &#x295D; (hex), &#10589; (decimal), or \295D in CSS content. There is no named entity. All produce ⥝.
U+295D (DOWNWARDS HARPOON WITH BARB RIGHT FROM BAR). Supplemental Arrows-B (U+2900–U+297F). Hex 295D, decimal 10589. A down harpoon with barb right, originating from a horizontal bar.
In scientific texts, mathematical notation, technical documents, and specialized content where a harpoon from bar (limits from a bar, or down-from-bar relations) is needed.
HTML references (&#10589; or &#x295D;) go in markup. The CSS escape \295D 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 &#x295D; or &#10589; 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