HTML Entity for Left Barb Down Right Barb Up Harpoon (⥋)

What You'll Learn
How to display the Left Barb Down Right Barb Up Harpoon (⥋) in HTML using the named entity, hexadecimal, decimal, and CSS escape methods. This symbol is U+294B (LEFT BARB DOWN RIGHT BARB UP HARPOON) in the Supplemental Arrows-B block (U+2900–U+297F)—a harpoon arrow used in mathematical notation, chemistry (reaction arrows), and technical content.
Render it with ⥋ (named), ⥋, ⥋, or CSS \294B. Related: U+2950 (⥐, left barb down right barb down harpoon), U+21BC (↼, left harpoon with barb up / ↼).
⚡ Quick Reference — Left Barb Down Right Barb Up Harpoon
U+294BSupplemental Arrows-B
⥋Hexadecimal reference
⥋Decimal reference
⥋Most readable option
Name Value
──────────── ──────────
Unicode U+294B
Hex code ⥋
HTML code ⥋
Named entity ⥋
CSS code \294B
Meaning Left barb down right barb up harpoon
Related U+2950 = left barb down right barb down (⥐)
U+21BC = left harpoon (↼)Complete HTML Example
A simple example showing the Left Barb Down Right Barb Up Harpoon (⥋) using the named entity, hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\294B";
}
</style>
</head>
<body>
<p>Symbol using Hexadecimal: ⥋</p>
<p>Symbol using HTML Code: ⥋</p>
<p>Symbol using HTML Entity: ⥋</p>
<p id="point">Symbol using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Left Barb Down Right Barb Up Harpoon (⥋) renders in modern browsers when the font includes Supplemental Arrows-B glyphs:
👀 Live Preview
See the Left Barb Down Right Barb Up Harpoon (⥋) in math and chemistry contexts:
🧠 How It Works
Named HTML Entity
⥋ is the named entity for the Left Barb Down Right Barb Up Harpoon. It is easy to read and remember in math and chemistry markup.
Hexadecimal Code
⥋ uses the Unicode hexadecimal value 294B. The x prefix indicates hexadecimal format.
Decimal HTML Code
⥋ uses the decimal Unicode value 10571 for the same symbol.
CSS Entity
\294B is used in CSS stylesheets in the content property of pseudo-elements like ::after for math and chemistry notation.
Same visual result
All four methods produce ⥋. Unicode U+294B is in Supplemental Arrows-B. Previous: Left Barb Down Right Barb Down Harpoon.
Use Cases
The Left Barb Down Right Barb Up Harpoon (⥋) is commonly used in:
Equations, limits, or notation that use harpoon arrows in math content.
Reaction arrows, equilibrium, or chemical notation.
Specifications, proofs, or notation that use this harpoon symbol.
Indicate direction or mapping in formal diagrams and proofs.
Represent mappings or relations in logic and set-theoretic notation.
Character sets, Unicode reference, or symbol lists.
💡 Best Practices
Do
- Prefer
⥋in HTML for readability - Pair ⥋ with text or
aria-labelfor accessibility in UI contexts - Use fonts that support Supplemental Arrows-B (U+294B)
- Set
<meta charset="utf-8"> - Keep one encoding style per project for consistency
- Distinguish ⥋ from ⥐ when barb direction matters
Don’t
- Confuse
⥋(U+294B) with↼(U+21BC) - Confuse ⥋ with ⥐ (left barb down right barb down harpoon)
- Use CSS
\294Binside HTML text nodes - Rely on the symbol alone without context in critical notation
- Assume legacy systems render Supplemental Arrows-B without testing
Key Takeaways
Four ways to render U+294B in web content
⥋ ⥋ ⥋For CSS, use \294B in the content property
Unicode U+294B — LEFT BARB DOWN RIGHT BARB UP HARPOON
Supplemental Arrows-B block (U+2900–U+297F)
❓ Frequently Asked Questions
⥋ (named), ⥋ (hex), ⥋ (decimal), or \294B in CSS content. All four methods render ⥋ correctly.U+294B (LEFT BARB DOWN RIGHT BARB UP HARPOON). Supplemental Arrows-B block (U+2900–U+297F). Hex 294B, decimal 10571. A left barb down right barb up harpoon.⥋, ⥋, ⥋) go in markup. The CSS escape \294B is used in stylesheets, typically on ::before or ::after. Both produce ⥋.⥋ is the named HTML entity for U+294B. You can also use ⥋ (decimal), ⥋ (hex), or \294B in CSS.Explore More HTML Entities!
Discover 1500+ HTML character references — arrows, symbols, math operators, and more.
8 people found this page helpful
