HTML Entity for Up Harpoon Barb Left Beside Down Harpoon Barb Right (⥮)

What You'll Learn
How to display the Up Harpoon Barb Left Beside Down Harpoon Barb Right (⥮) in HTML using hexadecimal, decimal, the named entity ⥮, and CSS escape methods. This character is U+296E (UPWARDS HARPOON WITH BARB LEFT BESIDE DOWNWARDS HARPOON WITH BARB RIGHT) in the Supplemental Arrows-B block (U+2900–U+297F)—a paired up-and-down harpoon symbol used in mathematical notation and bidirectional directional indicators.
Render it with ⥮, ⥮, ⥮, or CSS escape \296E. Compare ↿ (U+21BF, single up harpoon via ↿) and ⥯ (U+296F, the mirrored pair with barbs on opposite sides).
⚡ Quick Reference — Up Harpoon Barb Left Beside Down Harpoon Barb Right
U+296ESupplemental Arrows-B
⥮Hexadecimal reference
⥮Decimal reference
⥮HTML5 named entity for U+296E
Name Value
──────────── ──────────
Unicode U+296E
Hex code ⥮
HTML code ⥮
Named entity ⥮
CSS code \296E
Official name UPWARDS HARPOON WITH BARB LEFT BESIDE DOWNWARDS HARPOON WITH BARB RIGHT
Related U+21BF = Up harpoon barb left (↿); U+296F = Mirror pair
Block Supplemental Arrows-B (U+2900–U+297F)Complete HTML Example
A simple example showing ⥮ with hex, decimal, named entity, and CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point::after{
content: "\296E";
}
</style>
</head>
<body>
<p>Paired Harpoons (hex): ⥮</p>
<p>Paired Harpoons (decimal): ⥮</p>
<p>Paired Harpoons (entity): ⥮</p>
<p id="point">Paired Harpoons (CSS): </p>
</body>
</html>🌐 Browser Support
U+296E is widely supported in modern browsers when rendered with a font that includes Supplemental Arrows-B:
👀 Live Preview
See the Up Harpoon Barb Left Beside Down Harpoon Barb Right (⥮) in mathematical and UI contexts:
🧠 How It Works
Hexadecimal Code
⥮ uses the Unicode hexadecimal value 296E to display the paired harpoon symbol. The x prefix indicates hexadecimal format.
Decimal HTML Code
⥮ uses the decimal Unicode value 10606 to display the same character.
Named HTML Entity
⥮ is the HTML5 named entity for U+296E. It is easy to read in source and resolves to ⥮.
CSS Entity
\296E is used in CSS stylesheets in the content property of pseudo-elements like ::before and ::after.
Same visual result
All four methods produce: ⥮. Unicode U+296E in the Supplemental Arrows-B block (U+2900–U+297F). The paired up-and-down harpoon design is standard in mathematical bidirectional notation.
Use Cases
The Up Harpoon Barb Left Beside Down Harpoon Barb Right (⥮) is commonly used in:
Equations and limits using bidirectional harpoon arrow symbols.
Physics and engineering diagrams showing paired up/down vector direction.
Specialized controls needing bidirectional harpoon-style indicators.
Icon sets with paired harpoon arrows for technical applications.
Scientific papers and manuals referencing bidirectional harpoon notation.
Research documents and academic materials using paired harpoon symbols.
💡 Best Practices
Do
- Use
⥮for readable markup, or⥮/⥮ - Add
aria-labelwhen the symbol conveys mathematical or bidirectional meaning - Use paired harpoon symbols in proper mathematical or vector contexts
- Use
\296Ein CSS::before/::afterfor icon buttons - Serve pages with UTF-8 (
<meta charset="utf-8">)
Don’t
- Use U+0296E or CSS
\0296E—the correct value is U+296E and\296E - Confuse ⥮ (U+296E) with ↿ (single up harpoon, U+21BF)
- Put CSS escape
\296Ein 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
Named entity available: ⥮
⥮ ⥮For CSS stylesheets, use \296E in content
Unicode U+296E — paired up/down harpoon symbol
Single up harpoon: ↿ via ↿ (U+21BF)
Four methods, one glyph — widely supported in modern browsers
❓ Frequently Asked Questions
⥮ (hex), ⥮ (decimal), ⥮ (named entity), or \296E in CSS content. All produce ⥮.U+296E (UPWARDS HARPOON WITH BARB LEFT BESIDE DOWNWARDS HARPOON WITH BARB RIGHT). Supplemental Arrows-B block (U+2900–U+297F). Hex 296E, decimal 10606.⥮ is easier to read in source than ⥮ or ⥮, but all produce ⥮.⥮. 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.
8 people found this page helpful
