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

What You'll Learn
How to display the Left Barb Up Right Barb Down Harpoon (⥊) in HTML using the named entity, hexadecimal, decimal, and CSS escape methods. This symbol is U+294A (LEFT BARB UP RIGHT BARB DOWN 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 \294A. Related: U+294B (⥋, left barb down right barb up harpoon / ⥋), U+21BD (↽, left harpoon with barb down / ↽).
⚡ Quick Reference — Left Barb Up Right Barb Down Harpoon
U+294ASupplemental Arrows-B
⥊Hexadecimal reference
⥊Decimal reference
⥊Most readable option
Name Value
──────────── ──────────
Unicode U+294A
Hex code ⥊
HTML code ⥊
Named entity ⥊
CSS code \294A
Meaning Left barb up right barb down harpoon
Related U+294B = left barb down right barb up (⥋)
U+21BD = left harpoon (↽)Complete HTML Example
A simple example showing the Left Barb Up Right Barb Down Harpoon (⥊) using the named entity, hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\294A";
}
</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 Up Right Barb Down Harpoon (⥊) renders in modern browsers when the font includes Supplemental Arrows-B glyphs:
👀 Live Preview
See the Left Barb Up Right Barb Down Harpoon (⥊) in math and chemistry contexts:
🧠 How It Works
Named HTML Entity
⥊ is the named entity for the Left Barb Up Right Barb Down Harpoon. It is easy to read and remember in math and chemistry markup.
Hexadecimal Code
⥊ uses the Unicode hexadecimal value 294A. The x prefix indicates hexadecimal format.
Decimal HTML Code
⥊ uses the decimal Unicode value 10570 for the same symbol.
CSS Entity
\294A 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+294A is in Supplemental Arrows-B. Previous: Left Barb Down Right Barb Up Harpoon.
Use Cases
The Left Barb Up Right Barb Down 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+294A)
- Set
<meta charset="utf-8"> - Keep one encoding style per project for consistency
- Distinguish ⥊ from ⥋ when barb direction matters
Don’t
- Confuse
⥊(U+294A) with⥋(U+294B) - Confuse
⥊with↽(U+21BD) - Use CSS
\294Ainside 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+294A in web content
⥊ ⥊ ⥊For CSS, use \294A in the content property
Unicode U+294A — LEFT BARB UP RIGHT BARB DOWN HARPOON
Supplemental Arrows-B block (U+2900–U+297F)
❓ Frequently Asked Questions
⥊ (named), ⥊ (hex), ⥊ (decimal), or \294A in CSS content. All four methods render ⥊ correctly.U+294A (LEFT BARB UP RIGHT BARB DOWN HARPOON). Supplemental Arrows-B block (U+2900–U+297F). Hex 294A, decimal 10570. A left barb up right barb down harpoon.⥊, ⥊, ⥊) go in markup. The CSS escape \294A is used in stylesheets, typically on ::before or ::after. Both produce ⥊.⥊ is the named HTML entity for U+294A. You can also use ⥊ (decimal), ⥊ (hex), or \294A in CSS.Explore More HTML Entities!
Discover 1500+ HTML character references — arrows, symbols, math operators, and more.
8 people found this page helpful
