HTML Entity for Up Harpoon With Barb Left Beside Up Harpoon With Barb Right (⥣)

What You'll Learn
How to display the Up Harpoon With Barb Left Beside Up Harpoon With Barb Right (⥣) in HTML using hexadecimal, decimal, the named entity ⥣, and CSS escape methods. This character is U+2963 (UPWARDS HARPOON WITH BARB LEFT BESIDE UPWARDS HARPOON WITH BARB RIGHT) in the Supplemental Arrows-B block (U+2900–U+297F)—two upward-pointing harpoons with barbs on opposite sides, used in mathematical notation and paired directional indicators.
Render it with ⥣, ⥣, ⥣, or CSS escape \2963. Compare ⥮ (U+296E, up/down paired harpoons via ⥮) and do not confuse ⥣ with ↾ (U+21BE, single up harpoon barb right).
⚡ Quick Reference — Up Harpoon With Barb Left Beside Up Harpoon With Barb Right
U+2963Supplemental Arrows-B
⥣Hexadecimal reference
⥣Decimal reference
⥣HTML5 named entity for U+2963
Name Value
──────────── ──────────
Unicode U+2963
Hex code ⥣
HTML code ⥣
Named entity ⥣
CSS code \2963
Official name UPWARDS HARPOON WITH BARB LEFT BESIDE UPWARDS HARPOON WITH BARB RIGHT
Related U+296E = Up/down paired harpoons (⥮); U+21BF/U+21BE = Single harpoons
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: "\2963";
}
</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+2963 is widely supported in modern browsers when rendered with a font that includes Supplemental Arrows-B:
👀 Live Preview
See the Up Harpoon With Barb Left Beside Up Harpoon With Barb Right (⥣) in mathematical and UI contexts:
🧠 How It Works
Hexadecimal Code
⥣ uses the Unicode hexadecimal value 2963 to display the paired upward harpoon symbol. The x prefix indicates hexadecimal format.
Decimal HTML Code
⥣ uses the decimal Unicode value 10595 to display the same character.
Named HTML Entity
⥣ is the HTML5 named entity for U+2963. It is easy to read in source and resolves to ⥣.
CSS Entity
\2963 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+2963 in the Supplemental Arrows-B block (U+2900–U+297F). Two upward harpoons with barbs on left and right sides combined in one glyph.
Use Cases
The Up Harpoon With Barb Left Beside Up Harpoon With Barb Right (⥣) is commonly used in:
Equations and limits using paired upward harpoon arrow symbols.
Physics and engineering diagrams showing dual upward vector direction.
Specialized controls needing paired harpoon-style upward indicators.
Icon sets with dual upward harpoon arrows for technical applications.
Scientific papers and manuals referencing paired harpoon notation.
Research documents and academic materials using dual harpoon symbols.
💡 Best Practices
Do
- Use
⥣for readable markup, or⥣/⥣ - Add
aria-labelwhen the symbol conveys mathematical or navigation meaning - Use paired harpoon symbols in proper mathematical or vector contexts
- Use
\2963in CSS::before/::afterfor icon buttons - Serve pages with UTF-8 (
<meta charset="utf-8">)
Don’t
- Use U+02963 or CSS
\02963—the correct value is U+2963 and\2963 - Confuse
⥣(U+2963, paired) with↾(U+21BE, single harpoon) - Confuse ⥣ (both up) with ⥮ (up/down paired, U+296E)
- Put CSS escape
\2963in HTML text nodes - Assume all decorative fonts include Supplemental Arrows-B glyphs
Key Takeaways
Named entity available: ⥣
⥣ ⥣For CSS stylesheets, use \2963 in content
Unicode U+2963 — paired upward harpoons with opposite barbs
Up/down pair: ⥮ via ⥮ (U+296E)
Four methods, one glyph — widely supported in modern browsers
❓ Frequently Asked Questions
⥣ (hex), ⥣ (decimal), ⥣ (named entity), or \2963 in CSS content. All produce ⥣.U+2963 (UPWARDS HARPOON WITH BARB LEFT BESIDE UPWARDS HARPOON WITH BARB RIGHT). Supplemental Arrows-B block (U+2900–U+297F). Hex 2963, decimal 10595.⥣ is easier to read in source than ⥣ or ⥣, but all produce ⥣. Do not confuse with ↾ (U+21BE, single up harpoon barb right).⥣. 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
