HTML Entity for Up Barb Left Down Barb Left Harpoon (⥑)

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

What You'll Learn

How to display the Up Barb Left Down Barb Left Harpoon (⥑) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2951 in the Supplemental Arrows-B block (U+2900–U+297F)—a specialized harpoon symbol with barb-left orientations on both upward and downward components, used in mathematical notation, vector operations, and technical diagrams.

Render it with ⥑, ⥑, or CSS escape \2951. There is no named HTML entity. Compare ⥍ (up barb left down barb right harpoon, U+294D) for the barb-right variant on the lower harpoon.

⚡ Quick Reference — Up Barb Left Down Barb Left Harpoon

Unicode U+2951

Supplemental Arrows-B

Hex Code ⥑

Hexadecimal reference

HTML Code ⥑

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2951
Hex code       ⥑
HTML code      ⥑
Named entity   (none)
CSS code       \2951
Official name  UPWARDS HARPOON WITH BARB LEFT FROM BAR DOWNWARDS HARPOON WITH BARB LEFT TO BAR
Related        U+294D = Barb left / barb right (⥍)
Block          Supplemental Arrows-B (U+2900–U+297F)
1

Complete HTML Example

A simple example showing ⥑ using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\2951";
  }
 </style>
</head>
<body>
<p>Harpoon (hex): &#x2951;</p>
<p>Harpoon (decimal): &#10577;</p>
<p id="point">Harpoon (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+2951 is supported in modern browsers when rendered with a font that includes Supplemental Arrows-B:

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

👀 Live Preview

See the Up Barb Left Down Barb Left Harpoon (⥑) in mathematical and technical contexts:

Large glyph
Math notation f ⥑ g
Vector mapping A ⥑ B
vs barb-right variant ⥑ barb left   ⥍ barb right
Numeric refs &#x2951; &#10577;

🧠 How It Works

1

Hexadecimal Code

&#x2951; uses the Unicode hexadecimal value 2951 to display the Up Barb Left Down Barb Left Harpoon. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\2951 is used in CSS stylesheets in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All three methods produce: . Unicode U+2951 in Supplemental Arrows-B (U+2900–U+297F). Used for vector operations and technical diagrams with specific barb orientations.

Use Cases

The Up Barb Left Down Barb Left Harpoon (⥑) is commonly used in:

📊 Mathematical notation

Equations, formulas, and academic papers with vector mappings and directional relationships.

📜 Technical illustrations

Engineering diagrams and scientific illustrations requiring precise harpoon notation.

📈 Vector operations

Linear algebra, mathematical analysis, and vector mathematics content.

🔬 Scientific docs

Research papers and academic publications with specialized mathematical symbols.

⚡ Physics equations

Quantum mechanics and theoretical physics documentation.

💻 Math software

Equation editors and scientific computing application interfaces.

💡 Best Practices

Do

  • Use &#x2951; or &#10577; consistently in markup
  • Choose math-capable fonts (STIX, Latin Modern Math, Cambria Math)
  • Provide alt text or context for screen readers in mathematical content
  • Use \2951 in CSS ::before / ::after when needed
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Confuse ⥑ (barb left / barb left) with ⥍ (barb left / barb right, U+294D)
  • Use U+02951 or CSS \02951—the correct value is U+2951 and \2951
  • Expect a named entity—none exists for U+2951
  • Put CSS escape \2951 in HTML text nodes
  • Assume all decorative fonts include Supplemental Arrows-B glyphs

Key Takeaways

1

Two HTML numeric references render ⥑

&#x2951; &#10577;
2

For CSS stylesheets, use \2951 in content

3

Unicode U+2951 — Supplemental Arrows-B harpoon symbol

4

Barb-right variant: ⥍ (U+294D)

5

Three methods, one glyph — no named HTML entity

❓ Frequently Asked Questions

Use &#x2951; (hex), &#10577; (decimal), or \2951 in CSS content. There is no named entity. All produce ⥑.
U+2951 in Supplemental Arrows-B (U+2900–U+297F). Hex 2951, decimal 10577. A specialized harpoon for mathematical and technical notation.
In mathematical notations, technical illustrations, vector operations, scientific documentation, physics equations, and diagrams requiring precise harpoon symbols.
HTML references (&#10577; or &#x2951;) go in markup. The CSS escape \2951 is used in stylesheets, typically in the content property of pseudo-elements.
Named HTML entities cover common symbols. Specialized Supplemental Arrows-B harpoon characters such as U+2951 use numeric hex or decimal references—standard practice for advanced mathematical notation.

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