HTML Entity for Right Harpoon Barb Up To Bar (⥓)

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

What You'll Learn

How to display the Right Harpoon Barb Up To Bar (⥓) in HTML using hexadecimal, decimal, and CSS escape methods. This symbol is U+2953 (RIGHTWARDS HARPOON WITH BARB UP TO BAR) in the Supplemental Arrows-B block (U+2900–U+297F)—a right-pointing harpoon with barb up terminating at a horizontal bar, used in mathematical notation, logic, and technical writing.

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

⚡ Quick Reference — Right Harpoon Barb Up To Bar

Unicode U+2953

Supplemental Arrows-B

Hex Code ⥓

Hexadecimal reference

HTML Code ⥓

Decimal reference

Named Entity

Use numeric codes only

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

Complete HTML Example

A simple example showing the Right Harpoon Barb Up To 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: "\2953";
  }
 </style>
</head>
<body>
<p>Symbol using Hexadecimal: &#x2953;</p>
<p>Symbol using HTML Code: &#10579;</p>
<p id="point">Symbol using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Right Harpoon Barb Up To 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 Barb Up To Bar (⥓) in math and technical contexts:

Math notation f ⥓ g
Commutative diagram A ⥓ B
Direction ⥓ Target
Large glyph
Harpoon comparison ⥓ ⥛ ⇀ ⥨
Numeric refs &#x2953; &#10579; \2953

🧠 How It Works

1

Hexadecimal Code

&#x2953; uses the Unicode hexadecimal value 2953 to display the rightwards harpoon with barb up to bar. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\2953 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+2953 is in Supplemental Arrows-B. Previous: Right Harpoon Barb Up Above Left Harpoon Barb Up.

Use Cases

The Right Harpoon Barb Up To Bar (⥓) is commonly used in:

📐 Mathematics

Equations and notation where a harpoon-to-bar variant is required.

📜 Logic & category theory

Commutative diagrams and formal proofs with bar-modified harpoons.

📚 Technical docs

Scientific and technical documentation with advanced arrow notation.

📊 Flow diagrams

Show direction or relationships with a bar modifier in flowcharts.

🗃 Symbol reference

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

🎯 Proof notation

Arrow notation in proofs and formal logic documents.

💡 Best Practices

Do

  • Use &#10579; or &#x2953; in HTML—no named entity exists
  • Use fonts that support Supplemental Arrows-B (U+2953)
  • 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+2953
  • Use CSS \2953 inside HTML text nodes
  • Confuse ⥓ with ⥛ (harpoon from bar, not to 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+2953

&#x2953; &#10579;
2

For CSS, use \2953 in the content property

3

Unicode U+2953 — RIGHTWARDS HARPOON WITH BARB UP TO BAR

4

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

❓ Frequently Asked Questions

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