HTML Entity for Up Harpoon Barb Right (↾)

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

What You'll Learn

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

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

⚡ Quick Reference — Up Harpoon Barb Right

Unicode U+21BE

Arrows block

Hex Code ↾

Hexadecimal reference

HTML Code ↾

Decimal reference

Named Entity ↾

HTML5 named entity for U+21BE

Reference Table
Name           Value
────────────   ──────────
Unicode        U+21BE
Hex code       ↾
HTML code      ↾
Named entity   ↾
CSS code       \21BE
Official name  UPWARDS HARPOON WITH BARB RIGHT TO BAR
Related        U+21BF = Up harpoon barb left (↿); 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: "\21BE";
  }
 </style>
</head>
<body>
<p>Harpoon Up (hex): &#x21BE;</p>
<p>Harpoon Up (decimal): &#8638;</p>
<p>Harpoon Up (entity): &uharr;</p>
<p id="point">Harpoon Up (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+21BE 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 Right (↾) in mathematical and UI contexts:

Large glyph
Vector notation v ↾ upward
Math context f ↾ limit
vs barb left ↾ barb right   ↿ barb left
Named entity &uharr; → ↾
All HTML refs &#x21BE; &#8638; &uharr;

🧠 How It Works

1

Hexadecimal Code

&#x21BE; uses the Unicode hexadecimal value 21BE to display the Up Harpoon Barb Right. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

Named HTML Entity

&uharr; is the HTML5 named entity for U+21BE. It is easy to read in source and resolves to ↾.

HTML markup
4

CSS Entity

\21BE 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+21BE in the Arrows block (U+2190–U+21FF). The right barb harpoon design is standard in mathematical vector notation.

Use Cases

The Up Harpoon Barb Right (↾) 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 &uharr; for readable markup, or &#x21BE; / &#8638;
  • Add aria-label when the harpoon conveys mathematical or navigation meaning
  • Use harpoon symbols in proper mathematical or vector contexts
  • Use \21BE in CSS ::before / ::after for icon buttons
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Use U+021BE or CSS \021BE—the correct value is U+21BE and \21BE
  • Confuse ↾ (barb right) with ↿ (barb left, U+21BF)
  • Confuse &uharr; (U+21BE) with &uharl; (U+21BF, barb left)
  • Put CSS escape \21BE in HTML text nodes
  • Assume all decorative fonts include extended Arrows glyphs

Key Takeaways

1

Named entity available: &uharr;

&#x21BE; &#8638;
2

For CSS stylesheets, use \21BE in content

3

Unicode U+21BE — UPWARDS HARPOON WITH BARB RIGHT TO BAR

4

Barb left mirror: ↿ via &uharl; (U+21BF)

5

Four methods, one glyph — widely supported in modern browsers

❓ Frequently Asked Questions

Use &#x21BE; (hex), &#8638; (decimal), &uharr; (named entity), or \21BE in CSS content. All produce ↾.
U+21BE (UPWARDS HARPOON WITH BARB RIGHT TO BAR). Arrows block (U+2190–U+21FF). Hex 21BE, decimal 8638.
In mathematical notation, vector operations, directional indicators, navigation elements, and any content needing an upward harpoon with a right barb.
&uharr; is easier to read in source than &#8638; or &#x21BE;, but all produce ↾. Do not confuse with &uharl; (U+21BF, barb left).
The named HTML entity is &uharr;. 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