HTML Entity for Right Barb Up Left Barb Up Harpoon (⥏)

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

What You'll Learn

How to display the Right Barb Up Left Barb Up Harpoon (⥏) in HTML using hexadecimal, decimal, and CSS escape methods. This symbol is U+294F (LEFT BARB UP RIGHT BARB UP HARPOON) in the Supplemental Arrows-B block (U+2900–U+297F)—a harpoon arrow used in mathematical notation, chemistry (reaction arrows), and technical content.

Render it with ⥏, ⥏, or CSS \294F. There is no named HTML entity. Related: U+294A (⥊, left barb up right barb down harpoon / ⥊), U+294B (⥋, left barb down right barb up harpoon / ⥋).

⚡ Quick Reference — Right Barb Up Left Barb Up Harpoon

Unicode U+294F

Supplemental Arrows-B

Hex Code ⥏

Hexadecimal reference

HTML Code ⥏

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+294F
Hex code       ⥏
HTML code      ⥏
Named entity   (none)
CSS code       \294F
Meaning        Left barb up right barb up harpoon
Related        U+294A = left barb up right barb down (⥊)
               U+294B = left barb down right barb up (⥋)
1

Complete HTML Example

A simple example showing the Right Barb Up Left Barb Up Harpoon (⥏) 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: "\294F";
  }
 </style>
</head>
<body>
<p>Symbol using Hexadecimal: &#x294F;</p>
<p>Symbol using HTML Code: &#10575;</p>
<p id="point">Symbol using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Right Barb Up Left Barb Up Harpoon (⥏) 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 Barb Up Left Barb Up Harpoon (⥏) in math and chemistry contexts:

Math mapping f ⥏ g
Chemistry A ⥏ B
Relation notation X ⥏ Y
Large glyph
Harpoon comparison ⥏ ⥊ ⥋ ↼
Numeric refs &#x294F; &#10575; \294F

🧠 How It Works

1

Hexadecimal Code

&#x294F; uses the Unicode hexadecimal value 294F to display the right barb up left barb up harpoon. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\294F is used in CSS stylesheets in the content property of pseudo-elements like ::after for math and chemistry notation.

CSS stylesheet
=

Same visual result

All three methods produce . Unicode U+294F is in Supplemental Arrows-B. Previous: Left Barb Up Right Barb Down Harpoon.

Use Cases

The Right Barb Up Left Barb Up Harpoon (⥏) is commonly used in:

🔢 Math notation

Equations, limits, or notation that use harpoon arrows in math content.

⚗ Chemistry

Reaction arrows, equilibrium, or chemical notation.

📄 Documentation

Specifications, proofs, or notation that use this harpoon symbol.

📊 Diagrams

Indicate direction or mapping in formal diagrams and proofs.

📐 Logic

Represent mappings or relations in logic and set-theoretic notation.

🗃 Reference

Character sets, Unicode reference, or symbol lists.

💡 Best Practices

Do

  • Pair ⥏ with text or aria-label for accessibility in UI contexts
  • Use &#10575; or &#x294F; in HTML—no named entity exists
  • Use fonts that support Supplemental Arrows-B (U+294F)
  • Set <meta charset="utf-8">
  • Keep one numeric style (hex or decimal) per project
  • Distinguish ⥏ from ⥊ when barb direction matters

Don’t

  • Expect a named HTML entity for U+294F
  • Use CSS \294F inside HTML text nodes
  • Confuse ⥏ with ⥊ (left barb up right barb down / &lurdshar;)
  • Confuse ⥏ with ⥋ (left barb down right barb up / &ldrushar;)
  • Assume legacy systems render Supplemental Arrows-B without testing

Key Takeaways

1

Two HTML numeric references plus CSS for U+294F

&#x294F; &#10575;
2

For CSS, use \294F in the content property

3

Unicode U+294F — LEFT BARB UP RIGHT BARB UP HARPOON

4

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

❓ Frequently Asked Questions

Use &#x294F; (hex), &#10575; (decimal), or \294F in CSS content. There is no named entity. All three methods render ⥏ correctly.
U+294F (LEFT BARB UP RIGHT BARB UP HARPOON). Supplemental Arrows-B block (U+2900–U+297F). Hex 294F, decimal 10575. A right barb up left barb up harpoon.
In mathematical notation, chemistry reaction arrows, technical documentation, diagrams, and any content that requires a left-barb-up right-barb-up harpoon symbol.
HTML references (&#10575; or &#x294F;) go in markup. The CSS escape \294F is used in stylesheets, typically on ::before or ::after. Both produce ⥏.
Named entities cover common characters; harpoon symbols like U+294F in Supplemental Arrows-B use numeric hex (&#x294F;) or decimal (&#10575;) 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