HTML Entity for Down Harpoon With Barb Left (⇃)

What You'll Learn
How to display the Down Harpoon With Barb Left (⇃) in HTML using hexadecimal, decimal, the named entity ⇃, and CSS escape methods. This character is U+21C3 (DOWNWARDS HARPOON WITH BARB LEFT) in the Arrows block (U+2190–U+21FF)—a downward harpoon with the barb (hook) on the left, used in mathematical notation, scientific content, and technical documents.
Render it with ⇃, ⇃, ⇃, or CSS escape \21C3. For barb right use ⇂ (⇂, U+21C2). For paired down/up harpoons use ⥯ (⥯, U+296F).
⚡ Quick Reference — Down Harpoon With Barb Left
U+21C3Arrows block
⇃Hexadecimal reference
⇃Decimal reference
⇃HTML5 named entity for U+21C3
Name Value
──────────── ──────────
Unicode U+21C3
Hex code ⇃
HTML code ⇃
Named entity ⇃
CSS code \21C3
Related U+21C2 = Barb right (⇂); U+296F = Down-up pair (⥯)Complete HTML Example
This example demonstrates the Down Harpoon With Barb Left (⇃) using hexadecimal code, decimal HTML code, the named entity ⇃, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\21C3";
}
</style>
</head>
<body>
<p>Down Harpoon With Barb Left using Hexadecimal: ⇃</p>
<p>Down Harpoon With Barb Left using HTML Code: ⇃</p>
<p>Down Harpoon With Barb Left using HTML Entity: ⇃</p>
<p id="point">Down Harpoon With Barb Left using CSS Entity: </p>
</body>
</html>🌐 Browser Support
U+21C3 is widely supported in modern browsers when rendered with a font that includes Arrows:
👀 Live Preview
See the Down Harpoon With Barb Left (⇃) in math and logic contexts:
🧠 How It Works
Hexadecimal Code
⇃ uses the Unicode hexadecimal value 21C3 to display the Down Harpoon With Barb Left. The x prefix indicates hexadecimal format.
Decimal HTML Code
⇃ uses the decimal Unicode value 8643 to display the same character.
Named HTML Entity
⇃ is the HTML5 named entity for U+21C3 (down harpoon, barb left). It is easy to read in source and resolves to ⇃.
CSS Entity
\21C3 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All four methods produce: ⇃. Unicode U+21C3. Barb right: ⇂ (⇂). Serve HTML as UTF-8.
Use Cases
The Down Harpoon With Barb Left (⇃) is commonly used in:
Limits, convergence, or down-to relations with a harpoon (barb left).
Formal logic, proof notation, or maps-to / reduces-to relations.
Technical flows and specs that use harpoon symbols.
Downward flow with a harpoon (barb left) in process and logic diagrams.
Explain reduction, assignment, or down-to in developer and academic docs.
Symbol pickers or design systems that include harpoon characters.
💡 Best Practices
Do
- Use
⇃for readable markup, or⇃/⇃ - Add
aria-labelwhen the symbol means maps to or reduces to - Pair ⇃ with a legend in technical documents
- Use
\21C3in CSS::before/::afterfor harpoon icons - Serve pages with UTF-8 (
<meta charset="utf-8">)
Don’t
- Confuse
⇃(⇃, barb left) with⇂(⇂, barb right) - Confuse ⇃ with ↓ (
↓, plain down arrow) - Put CSS escape
\21C3in HTML text nodes - Rely on the symbol alone in accessibility-critical UIs
- Assume decorative fonts include all Arrows glyphs
Key Takeaways
Named entity available: ⇃
⇃ ⇃For CSS stylesheets, use the escape in the content property
\21C3Unicode U+21C3 — DOWNWARDS HARPOON WITH BARB LEFT
Mirror of barb right: ⇂ via ⇂ (U+21C2)
Four methods, one glyph — widely supported in modern browsers
❓ Frequently Asked Questions
⇃ (hex), ⇃ (decimal), ⇃ (named entity), or \21C3 in CSS content. All produce ⇃.U+21C3 (DOWNWARDS HARPOON WITH BARB LEFT). Arrows block (U+2190–U+21FF). Hex 21C3, decimal 8643. A downward harpoon with the barb on the left.⇃ is easier to read in source than ⇃ or ⇃, but all produce ⇃. The CSS escape \21C3 is used in stylesheets in the content property of pseudo-elements.⇃ is the Down Harpoon With Barb Left (⇃, U+21C3)—barb on the left. The Down Harpoon With Barb Right (⇂, U+21C2, ⇂) has the barb on the right. They are mirror images and different Unicode glyphs.Explore More HTML Entities!
Discover 1500+ HTML character references — arrows, symbols, math operators, and more.
8 people found this page helpful
