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

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
U+295DSupplemental Arrows-B
⥝Hexadecimal reference
⥝Decimal reference
—Use numeric codes only
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 barComplete HTML Example
This example demonstrates the Down Harpoon With Barb Right From Bar (⥝) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\295D";
}
</style>
</head>
<body>
<p>Down Harpoon With Barb Right From Bar using Hexadecimal: ⥝</p>
<p>Down Harpoon With Barb Right From Bar using HTML Code: ⥝</p>
<p id="point">Down Harpoon With Barb Right From Bar using CSS Entity: </p>
</body>
</html>🌐 Browser Support
U+295D is supported in modern browsers when rendered with a font that includes Supplemental Arrows-B:
👀 Live Preview
See the Down Harpoon With Barb Right From Bar (⥝) in scientific and math contexts:
🧠 How It Works
Hexadecimal Code
⥝ uses the Unicode hexadecimal value 295D to display the Down Harpoon With Barb Right From Bar. The x prefix indicates hexadecimal format.
Decimal HTML Code
⥝ uses the decimal Unicode value 10589 to display the same character.
CSS Entity
\295D 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+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:
Limits from a bar, or down-from-bar relations in mathematics.
Formal logic or proof notation where a harpoon from bar is required.
Technical flows and specs that use harpoon-from-bar symbols.
Flow downward from a bar in process and logic diagrams.
Explain from-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 from bar or down from bar - Pair ⥝ with a legend in technical documents
- Use
\295Din CSS::before/::afterfor 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 ⇂ (
⇂, barb right only) - Put CSS escape
\295Din 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
\295DUnicode U+295D — DOWNWARDS HARPOON WITH BARB RIGHT FROM BAR
Supplemental Arrows-B block (U+2900–U+297F)
Three methods, one glyph — widely supported in modern browsers
❓ Frequently Asked Questions
⥝ (hex), ⥝ (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.⥝ or ⥝) 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.⥝ or ⥝ in HTML.Explore More HTML Entities!
Discover 1500+ HTML character references — arrows, symbols, math operators, and more.
8 people found this page helpful
