HTML Entity for Up Harpoon Barb Left (↿)

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

What You'll Learn

How to display the Up Harpoon Barb Left (↿) in HTML using hexadecimal, decimal, the named entity ↿, and CSS escape methods. This character is U+21BF (UPWARDS HARPOON WITH BARB LEFT TO BAR) in the Arrows block (U+2190–U+21FF)—an upward-pointing harpoon with a barb on the left, widely used in mathematical notation and vector diagrams.

Render it with ↿, ↿, ↿, or CSS escape \21BF. Compare ↾ (U+21BE, up harpoon barb right) for the mirror variant with the barb on the right side.

⚡ Quick Reference — Up Harpoon Barb Left

Unicode U+21BF

Arrows block

Hex Code ↿

Hexadecimal reference

HTML Code ↿

Decimal reference

Named Entity ↿

HTML5 named entity for U+21BF

Reference Table
Name           Value
────────────   ──────────
Unicode        U+21BF
Hex code       ↿
HTML code      ↿
Named entity   ↿
CSS code       \21BF
Official name  UPWARDS HARPOON WITH BARB LEFT TO BAR
Related        U+21BE = Up harpoon barb right; U+2191 = Up arrow (↑)
Block          Arrows (U+2190–U+21FF)
1

Complete HTML Example

A simple example showing ↿ with hex, decimal, named entity, and CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\21BF";
  }
 </style>
</head>
<body>
<p>Harpoon Up (hex): &#x21BF;</p>
<p>Harpoon Up (decimal): &#8639;</p>
<p>Harpoon Up (entity): &uharl;</p>
<p id="point">Harpoon Up (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+21BF is widely supported in modern browsers when rendered with a font that includes Arrows:

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

👀 Live Preview

See the Up Harpoon Barb Left (↿) in mathematical and UI contexts:

Large glyph
Vector notation v ↿ upward
Math context f ↿ limit
vs up arrow ↿ harpoon   ↑ arrow
Named entity &uharl; → ↿
All HTML refs &#x21BF; &#8639; &uharl;

🧠 How It Works

1

Hexadecimal Code

&#x21BF; uses the Unicode hexadecimal value 21BF to display the Up Harpoon Barb Left. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

Named HTML Entity

&uharl; is the HTML5 named entity for U+21BF. It is easy to read in source and resolves to ↿.

HTML markup
4

CSS Entity

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

CSS stylesheet
=

Same visual result

All four methods produce: . Unicode U+21BF in the Arrows block (U+2190–U+21FF). The left barb harpoon design is standard in mathematical vector notation.

Use Cases

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

🔢 Mathematical notation

Equations, limits, and vector operations using harpoon arrow symbols.

📜 Vector diagrams

Physics and engineering diagrams showing upward vector direction.

🎨 UI design

Specialized controls needing harpoon-style upward indicators.

🛠 Iconography

Icon sets with harpoon upward arrows for technical applications.

🗺 Technical docs

Scientific papers and manuals referencing harpoon directional notation.

💻 Scientific content

Research documents and academic materials using harpoon symbols.

💡 Best Practices

Do

  • Use &uharl; for readable markup, or &#x21BF; / &#8639;
  • Add aria-label when the harpoon conveys mathematical or navigation meaning
  • Use harpoon symbols in proper mathematical or vector contexts
  • Use \21BF in CSS ::before / ::after for icon buttons
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Use U+021BF or CSS \021BF—the correct value is U+21BF and \21BF
  • Confuse ↿ (barb left) with ↾ (barb right, U+21BE)
  • Put CSS escape \21BF in HTML text nodes
  • Rely on the symbol alone without context in accessibility-critical UIs
  • Assume all decorative fonts include extended Arrows glyphs

Key Takeaways

1

Named entity available: &uharl;

&#x21BF; &#8639;
2

For CSS stylesheets, use \21BF in content

3

Unicode U+21BF — UPWARDS HARPOON WITH BARB LEFT TO BAR

4

Standard up arrow: ↑ via &uarr; (U+2191)

5

Four methods, one glyph — widely supported in modern browsers

❓ Frequently Asked Questions

Use &#x21BF; (hex), &#8639; (decimal), &uharl; (named entity), or \21BF in CSS content. All produce ↿.
U+21BF (UPWARDS HARPOON WITH BARB LEFT TO BAR). Arrows block (U+2190–U+21FF). Hex 21BF, decimal 8639.
In mathematical notation, vector operations, directional indicators, navigation elements, and any content needing an upward harpoon with a left barb.
&uharl; is easier to read in source than &#8639; or &#x21BF;, but all produce ↿.
The named HTML entity is &uharl;. It is part of the HTML5 named entity set, making it convenient to use instead of numeric hex or decimal references.

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