HTML Entity for Up Harpoon Barb Left From Bar (⥠)

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

What You'll Learn

How to display the Up Harpoon Barb Left From Bar (⥠) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2960 (UPWARDS HARPOON WITH BARB LEFT FROM BAR) in the Supplemental Arrows-B block (U+2900–U+297F)—an upward-pointing harpoon with a left barb that extends from a horizontal bar, widely used in mathematical notation and vector diagrams.

Render it with ⥠, ⥠, or CSS escape \2960. There is no named HTML entity. Compare ⥘ (U+2958, up harpoon barb left to bar) for the variant pointing to a bar rather than from one.

⚡ Quick Reference — Up Harpoon Barb Left From Bar

Unicode U+2960

Supplemental Arrows-B

Hex Code ⥠

Hexadecimal reference

HTML Code ⥠

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2960
Hex code       ⥠
HTML code      ⥠
Named entity   (none)
CSS code       \2960
Official name  UPWARDS HARPOON WITH BARB LEFT FROM BAR
Related        U+2958 = Up harpoon barb left to bar; U+21BF = Up harpoon barb left (↿)
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: "\2960";
  }
 </style>
</head>
<body>
<p>Harpoon From Bar (hex): &#x2960;</p>
<p>Harpoon From Bar (decimal): &#10592;</p>
<p id="point">Harpoon From Bar (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+2960 is widely 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 Harpoon Barb Left From Bar (⥠) in mathematical and UI contexts:

Large glyph
Vector notation v ⥠ from bar
Math context f ⥠ limit
from vs to bar ⥠ from bar   ⥘ to bar
Numeric refs &#x2960; &#10592;

🧠 How It Works

1

Hexadecimal Code

&#x2960; uses the Unicode hexadecimal value 2960 to display the Up Harpoon Barb Left From Bar. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\2960 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+2960 in the Supplemental Arrows-B block (U+2900–U+297F). The harpoon extends upward from a horizontal bar with a left barb.

Use Cases

The Up Harpoon Barb Left From Bar (⥠) is commonly used in:

🔢 Mathematical notation

Equations and limits using harpoon arrows extending from a bar or baseline.

📜 Vector diagrams

Physics and engineering diagrams showing upward vectors originating from a bar.

🎨 UI design

Specialized controls needing harpoon-style upward indicators from a reference line.

🛠 Iconography

Icon sets with harpoon-from-bar arrows for technical applications.

🗺 Technical docs

Scientific papers and manuals referencing harpoon directional notation from bars.

💻 Scientific content

Research documents and academic materials using bar-anchored harpoon symbols.

💡 Best Practices

Do

  • Use &#x2960; or &#10592; consistently in markup
  • Add aria-label when the harpoon conveys mathematical or navigation meaning
  • Use harpoon-from-bar symbols in proper mathematical or vector contexts
  • Use \2960 in CSS ::before / ::after for icon buttons
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Use U+02960 or CSS \02960—the correct value is U+2960 and \2960
  • Confuse ⥠ (from bar) with ⥘ (to bar, U+2958)
  • Put CSS escape \2960 in HTML text nodes
  • Rely on the symbol alone without context in accessibility-critical UIs
  • Assume all decorative fonts include Supplemental Arrows-B glyphs

Key Takeaways

1

No named entity—use numeric codes only

&#x2960; &#10592;
2

For CSS stylesheets, use \2960 in content

3

Unicode U+2960 — UPWARDS HARPOON WITH BARB LEFT FROM BAR

4

To-bar variant: ⥘ (U+2958, up harpoon barb left to bar)

5

Three methods, one glyph — widely supported in modern browsers

❓ Frequently Asked Questions

Use &#x2960; (hex), &#10592; (decimal), or \2960 in CSS content. All produce ⥠.
U+2960 (UPWARDS HARPOON WITH BARB LEFT FROM BAR). Supplemental Arrows-B block (U+2900–U+297F). Hex 2960, decimal 10592.
In mathematical notation, vector operations, directional indicators, and any content needing an upward harpoon with a left barb extending from a horizontal bar.
HTML code (&#10592; or &#x2960;) is used in HTML content, while CSS escape \2960 is used in stylesheets in the content property of pseudo-elements. Both produce ⥠.
Named HTML entities cover commonly used characters; supplemental arrow symbols like U+2960 use numeric hex or decimal codes instead. This is standard for extended Unicode arrow blocks.

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