HTML Entity for Right Harpoon With Barb Up From Bar (⥛)

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

What You'll Learn

How to display the Right Harpoon With Barb Up From Bar (⥛) in HTML using hexadecimal, decimal, and CSS escape methods. This symbol is U+295B (RIGHTWARDS HARPOON WITH BARB UP FROM BAR) in the Supplemental Arrows-B block (U+2900–U+297F)—a right-pointing harpoon with barb up originating from a bar, used in mathematical notation and technical writing.

Render it with ⥛, ⥛, or CSS \295B. There is no named HTML entity. Related: U+295F (⥟, right harpoon with barb down from bar), U+21C0 (⇀, right harpoon barb up / ⇀).

⚡ Quick Reference — Right Harpoon With Barb Up From Bar

Unicode U+295B

Supplemental Arrows-B

Hex Code ⥛

Hexadecimal reference

HTML Code ⥛

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+295B
Hex code       ⥛
HTML code      ⥛
Named entity   (none)
CSS code       \295B
Meaning        Rightwards harpoon with barb up from bar
Related        U+295F = right harpoon with barb down from bar (⥟)
               U+21C0 = right harpoon barb up (⇀)
1

Complete HTML Example

A simple example showing the Right Harpoon With Barb Up From Bar (⥛) using hexadecimal code, decimal HTML code, and a CSS content escape. There is no named HTML entity:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\295B";
  }
 </style>
</head>
<body>
<p>Symbol using Hexadecimal: &#x295B;</p>
<p>Symbol using HTML Code: &#10587;</p>
<p id="point">Symbol using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Right Harpoon With Barb Up From Bar (⥛) renders in modern browsers when the font includes Supplemental Arrows-B glyphs:

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

👀 Live Preview

See the Right Harpoon With Barb Up From Bar (⥛) in math and technical contexts:

Math notation f ⥛ g
Flow diagram A ⥛ B
Direction Start ⥛
Large glyph
Harpoon comparison ⥛ ⥟ ⥓ ⇀
Numeric refs &#x295B; &#10587; \295B

🧠 How It Works

1

Hexadecimal Code

&#x295B; uses the Unicode hexadecimal value 295B to display the rightwards harpoon with barb up from bar. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\295B is used in CSS stylesheets in the content property of pseudo-elements like ::after for math and technical indicators.

CSS stylesheet
=

Same visual result

All three methods produce . Unicode U+295B is in Supplemental Arrows-B. Previous: Right Harpoon With Barb Up Above Right Harpoon With Barb Down.

Use Cases

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

📐 Mathematics

Specialized mappings or relations where a harpoon-from-bar variant is required.

📊 Flow diagrams

Show direction or relationships with a bar modifier in flowcharts.

📚 Technical docs

Illustrate advanced notation in math or logic tutorials and reference docs.

🎯 Notation

Distinct left harpoon from bar in scientific UI and labels.

🗃 Symbol reference

Display in symbol pickers, character maps, or entity reference pages.

📜 Formal logic

Represent specific operators or relations in formal logic or proof notation.

💡 Best Practices

Do

  • Use &#10587; or &#x295B; in HTML—no named entity exists
  • Use fonts that support Supplemental Arrows-B (U+295B)
  • Set <meta charset="utf-8">
  • Pair ⥛ with explanatory context for accessibility
  • Keep one numeric style (hex or decimal) per project
  • Distinguish ⥛ from ⥟ and ⇀ when symbol meaning matters

Don’t

  • Expect a named HTML entity for U+295B
  • Use CSS \295B inside HTML text nodes
  • Confuse ⥛ with ⥟ (harpoon barb down from bar)
  • Confuse ⥛ with ⇀ (simple right harpoon barb up)
  • Assume legacy systems render Supplemental Arrows-B without testing

Key Takeaways

1

Two HTML numeric references plus CSS for U+295B

&#x295B; &#10587;
2

For CSS, use \295B in the content property

3

Unicode U+295B — RIGHTWARDS HARPOON WITH BARB UP FROM BAR

4

Supplemental Arrows-B block (U+2900–U+297F) — no named entity

❓ Frequently Asked Questions

Use &#x295B; (hex), &#10587; (decimal), or \295B in CSS content. There is no named entity. All three methods render ⥛ correctly.
U+295B (RIGHTWARDS HARPOON WITH BARB UP FROM BAR). Supplemental Arrows-B block (U+2900–U+297F). Hex 295B, decimal 10587.
In mathematical notation, technical writing, flow diagrams, and any design that needs a rightwards harpoon with barb up from bar.
HTML references (&#10587; or &#x295B;) go in markup. The CSS escape \295B is used in stylesheets, typically on ::before or ::after. Both produce ⥛.
Named entities cover common characters; harpoon symbols like U+295B in Supplemental Arrows-B use numeric hex (&#x295B;) or decimal (&#10587;) codes. That is standard for such symbols 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