HTML Entity for Up Harpoon Barb Right From Bar (⥜)

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

What You'll Learn

How to display the Up Harpoon Barb Right From Bar (⥜) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+295C (UPWARDS HARPOON WITH BARB RIGHT FROM BAR) in the Supplemental Arrows-B block (U+2900–U+297F)—an upward-pointing harpoon with a right barb that extends from a horizontal bar, widely used in mathematical notation and vector diagrams.

Render it with ⥜, ⥜, or CSS escape \295C. There is no named HTML entity. Compare ⥔ (U+2954, up harpoon barb right to bar) for the variant pointing to a bar, and ⥠ (U+2960, barb left from bar) for the mirror on the left side.

⚡ Quick Reference — Up Harpoon Barb Right From Bar

Unicode U+295C

Supplemental Arrows-B

Hex Code ⥜

Hexadecimal reference

HTML Code ⥜

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+295C
Hex code       ⥜
HTML code      ⥜
Named entity   (none)
CSS code       \295C
Official name  UPWARDS HARPOON WITH BARB RIGHT FROM BAR
Related        U+2954 = Up harpoon barb right to bar; U+21BE = Up harpoon barb right (↾)
Block          Supplemental Arrows-B (U+2900–U+297F)
1

Complete HTML Example

A simple example showing ⥜ using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\295C";
  }
 </style>
</head>
<body>
<p>Harpoon From Bar (hex): &#x295C;</p>
<p>Harpoon From Bar (decimal): &#10588;</p>
<p id="point">Harpoon From Bar (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+295C is widely 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 Up Harpoon Barb Right From Bar (⥜) in mathematical and UI contexts:

Large glyph
Vector notation v ⥜ from bar
Math context f ⥜ limit
from vs to bar ⥜ from bar   ⥔ to bar
Numeric refs &#x295C; &#10588;

🧠 How It Works

1

Hexadecimal Code

&#x295C; uses the Unicode hexadecimal value 295C to display the Up Harpoon Barb Right From Bar. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\295C is used in CSS stylesheets in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All three methods produce: . Unicode U+295C in the Supplemental Arrows-B block (U+2900–U+297F). The harpoon extends upward from a horizontal bar with a right barb.

Use Cases

The Up Harpoon Barb Right From Bar (⥜) is commonly used in:

🔢 Mathematical notation

Equations and limits using harpoon arrows extending from a bar or baseline.

📜 Vector diagrams

Physics and engineering diagrams showing upward vectors originating from a bar.

🎨 UI design

Specialized controls needing harpoon-style upward indicators from a reference line.

🛠 Iconography

Icon sets with harpoon-from-bar arrows for technical applications.

🗺 Technical docs

Scientific papers and manuals referencing harpoon directional notation from bars.

💻 Scientific content

Research documents and academic materials using bar-anchored harpoon symbols.

💡 Best Practices

Do

  • Use &#x295C; or &#10588; consistently in markup
  • Add aria-label when the harpoon conveys mathematical or navigation meaning
  • Use harpoon-from-bar symbols in proper mathematical or vector contexts
  • Use \295C in CSS ::before / ::after for icon buttons
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Use U+0295C or CSS \0295C—the correct value is U+295C and \295C
  • Confuse ⥜ (from bar) with ⥔ (to bar, U+2954)
  • Put CSS escape \295C in HTML text nodes
  • Rely on the symbol alone without context in accessibility-critical UIs
  • Assume all decorative fonts include Supplemental Arrows-B glyphs

Key Takeaways

1

No named entity—use numeric codes only

&#x295C; &#10588;
2

For CSS stylesheets, use \295C in content

3

Unicode U+295C — UPWARDS HARPOON WITH BARB RIGHT FROM BAR

4

To-bar variant: ⥔ (U+2954, up harpoon barb right to bar)

5

Three methods, one glyph — widely supported in modern browsers

❓ Frequently Asked Questions

Use &#x295C; (hex), &#10588; (decimal), or \295C in CSS content. All produce ⥜.
U+295C (UPWARDS HARPOON WITH BARB RIGHT FROM BAR). Supplemental Arrows-B block (U+2900–U+297F). Hex 295C, decimal 10588.
In mathematical notation, vector operations, directional indicators, and any content needing an upward harpoon with a right barb extending from a horizontal bar.
HTML code (&#10588; or &#x295C;) is used in HTML content, while CSS escape \295C is used in stylesheets in the content property of pseudo-elements. Both produce ⥜.
Named HTML entities cover commonly used characters; supplemental arrow symbols like U+295C use numeric hex or decimal codes instead. This is standard for extended Unicode arrow blocks.

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