HTML Entity for Left Barb Down Right Barb Down Harpoon (⥐)

What You'll Learn
How to display the Left Barb Down Right Barb Down Harpoon (⥐) in HTML using hexadecimal, decimal, and CSS escape methods. This symbol is U+2950 (LEFT BARB DOWN 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 ⥐, ⥐, or CSS \2950. There is no named HTML entity. Related: U+2951 (⥑, left barb down right barb up harpoon), U+21BC (↼, left harpoon / ↼).
⚡ Quick Reference — Left Barb Down Right Barb Down Harpoon
U+2950Supplemental Arrows-B
⥐Hexadecimal reference
⥐Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+2950
Hex code ⥐
HTML code ⥐
Named entity (none)
CSS code \2950
Meaning Left barb down right barb down harpoon
Related U+2951 = left barb down right barb up (⥑)
U+21BC = left harpoon (↼)Complete HTML Example
A simple example showing the Left Barb Down Right Barb Down 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: "\2950";
}
</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 Down Right Barb Down Harpoon (⥐) renders in modern browsers when the font includes Supplemental Arrows-B glyphs:
👀 Live Preview
See the Left Barb Down Right Barb Down Harpoon (⥐) in math and chemistry contexts:
🧠 How It Works
Hexadecimal Code
⥐ uses the Unicode hexadecimal value 2950 to display the left barb down right barb down harpoon. The x prefix indicates hexadecimal format.
Decimal HTML Code
⥐ uses the decimal Unicode value 10576 to display the same character.
CSS Entity
\2950 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+2950 is in Supplemental Arrows-B. Next: Left Barb Down Right Barb Up Harpoon.
Use Cases
The Left Barb Down 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
- 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+2950)
- Set
<meta charset="utf-8"> - Keep one numeric style (hex or decimal) per project
- Test glyph rendering across browsers and fonts
Don’t
- Expect a named HTML entity for U+2950
- Use CSS
\2950inside HTML text nodes - Confuse ⥐ with ⥑ (left barb down right barb up harpoon)
- Confuse ⥐ with ↼ (simple left harpoon /
↼) - Assume legacy systems render Supplemental Arrows-B without testing
Key Takeaways
Two HTML numeric references plus CSS for U+2950
⥐ ⥐For CSS, use \2950 in the content property
Unicode U+2950 — LEFT BARB DOWN RIGHT BARB DOWN HARPOON
Supplemental Arrows-B block (U+2900–U+297F) — no named entity
Previous: Left Arrowhead Below (U+0354) Next: Left Barb Down Right Barb Up Harpoon
❓ Frequently Asked Questions
⥐ (hex), ⥐ (decimal), or \2950 in CSS content. There is no named entity. All three methods render ⥐ correctly.U+2950 (LEFT BARB DOWN RIGHT BARB DOWN HARPOON). Supplemental Arrows-B block (U+2900–U+297F). Hex 2950, decimal 10576. A left barb down right barb down harpoon.⥐ or ⥐) go in markup. The CSS escape \2950 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
