HTML Entity for Left Barb Up Right Barb Up Harpoon (⥎)

What You'll Learn
How to display the Left Barb Up Right Barb Up Harpoon (⥎) in HTML using hexadecimal, decimal, and CSS escape methods. This symbol is U+294E (LEFT BARB UP 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 ⥎, ⥎, or CSS \294E. There is no named HTML entity. Related: U+294A (⥊, left barb up right barb down harpoon / ⥊), U+294B (⥋, left barb down right barb up harpoon / ⥋).
⚡ Quick Reference — Left Barb Up Right Barb Up Harpoon
U+294ESupplemental Arrows-B
⥎Hexadecimal reference
⥎Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+294E
Hex code ⥎
HTML code ⥎
Named entity (none)
CSS code \294E
Meaning Left barb up right barb up harpoon
Related U+294A = left barb up right barb down (⥊)
U+294B = left barb down right barb up (⥋)Complete HTML Example
A simple example showing the Left Barb Up Right Barb Up Harpoon (⥎) using hexadecimal code, decimal HTML code, and a CSS content escape. There is no named HTML entity:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\294E";
}
</style>
</head>
<body>
<p>Symbol using Hexadecimal: ⥎</p>
<p>Symbol using HTML Code: ⥎</p>
<p id="point">Symbol using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Left Barb Up Right Barb Up Harpoon (⥎) renders in modern browsers when the font includes Supplemental Arrows-B glyphs:
👀 Live Preview
See the Left Barb Up Right Barb Up Harpoon (⥎) in math and chemistry contexts:
🧠 How It Works
Hexadecimal Code
⥎ uses the Unicode hexadecimal value 294E to display the left barb up right barb up harpoon. The x prefix indicates hexadecimal format.
Decimal HTML Code
⥎ uses the decimal Unicode value 10574 to display the same character.
CSS Entity
\294E is used in CSS stylesheets in the content property of pseudo-elements like ::after for math and chemistry notation.
Same visual result
All three methods produce ⥎. Unicode U+294E is in Supplemental Arrows-B. Previous: Left Barb Up Right Barb Down Harpoon.
Use Cases
The Left Barb Up 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
- Pair ⥎ with text or
aria-labelfor accessibility in UI contexts - Use
⥎or⥎in HTML—no named entity exists - Use fonts that support Supplemental Arrows-B (U+294E)
- Set
<meta charset="utf-8"> - Keep one numeric style (hex or decimal) per project
- Distinguish ⥎ from ⥊ when barb direction matters
Don’t
- Expect a named HTML entity for U+294E
- Use CSS
\294Einside HTML text nodes - Confuse ⥎ with ⥊ (left barb up right barb down /
⥊) - Confuse ⥎ with ⥋ (left barb down right barb up /
⥋) - Assume legacy systems render Supplemental Arrows-B without testing
Key Takeaways
Two HTML numeric references plus CSS for U+294E
⥎ ⥎For CSS, use \294E in the content property
Unicode U+294E — LEFT BARB UP RIGHT BARB UP HARPOON
Supplemental Arrows-B block (U+2900–U+297F) — no named entity
Previous: Left Barb Up Right Barb Down Harpoon (⥊) Next: Left Brace
❓ Frequently Asked Questions
⥎ (hex), ⥎ (decimal), or \294E in CSS content. There is no named entity. All three methods render ⥎ correctly.U+294E (LEFT BARB UP RIGHT BARB UP HARPOON). Supplemental Arrows-B block (U+2900–U+297F). Hex 294E, decimal 10574. A left barb up right barb up harpoon.⥎ or ⥎) go in markup. The CSS escape \294E is used in stylesheets, typically on ::before or ::after. Both produce ⥎.⥎) or decimal (⥎) codes. That is standard for such symbols in HTML.Explore More HTML Entities!
Discover 1500+ HTML character references — arrows, symbols, math operators, and more.
8 people found this page helpful
