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

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
U+295CSupplemental Arrows-B
⥜Hexadecimal reference
⥜Decimal reference
—Use numeric codes only
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)Complete HTML Example
A simple example showing ⥜ using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point::after{
content: "\295C";
}
</style>
</head>
<body>
<p>Harpoon From Bar (hex): ⥜</p>
<p>Harpoon From Bar (decimal): ⥜</p>
<p id="point">Harpoon From Bar (CSS): </p>
</body>
</html>🌐 Browser Support
U+295C is widely supported in modern browsers when rendered with a font that includes Supplemental Arrows-B:
👀 Live Preview
See the Up Harpoon Barb Right From Bar (⥜) in mathematical and UI contexts:
🧠 How It Works
Hexadecimal Code
⥜ uses the Unicode hexadecimal value 295C to display the Up Harpoon Barb Right From Bar. The x prefix indicates hexadecimal format.
Decimal HTML Code
⥜ uses the decimal Unicode value 10588 to display the same character.
CSS Entity
\295C is used in CSS stylesheets in the content property of pseudo-elements like ::before and ::after.
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:
Equations and limits using harpoon arrows extending from a bar or baseline.
Physics and engineering diagrams showing upward vectors originating from a bar.
Specialized controls needing harpoon-style upward indicators from a reference line.
Icon sets with harpoon-from-bar arrows for technical applications.
Scientific papers and manuals referencing harpoon directional notation from bars.
Research documents and academic materials using bar-anchored harpoon symbols.
💡 Best Practices
Do
- Use
⥜or⥜consistently in markup - Add
aria-labelwhen the harpoon conveys mathematical or navigation meaning - Use harpoon-from-bar symbols in proper mathematical or vector contexts
- Use
\295Cin CSS::before/::afterfor 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
\295Cin 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
No named entity—use numeric codes only
⥜ ⥜For CSS stylesheets, use \295C in content
Unicode U+295C — UPWARDS HARPOON WITH BARB RIGHT FROM BAR
To-bar variant: ⥔ (U+2954, up harpoon barb right to bar)
Three methods, one glyph — widely supported in modern browsers
❓ Frequently Asked Questions
⥜ (hex), ⥜ (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.⥜ or ⥜) is used in HTML content, while CSS escape \295C is used in stylesheets in the content property of pseudo-elements. Both produce ⥜.Explore More HTML Entities!
Discover 1500+ HTML character references — arrows, symbols, math operators, and more.
8 people found this page helpful
