HTML Entity for Down Harpoon With Barb Right (⇂)

What You'll Learn
How to display the Down Harpoon With Barb Right (⇂) in HTML using hexadecimal, decimal, the named entity ⇂, and CSS escape methods. This character is U+21C2 (DOWNWARDS HARPOON WITH BARB RIGHT) in the Arrows block (U+2190–U+21FF)—a downward harpoon with the barb (hook) on the right, used in mathematical notation, technical content, and logic.
Render it with ⇂, ⇂, ⇂, or CSS escape \21C2. For barb left use ⇃ (⇃, U+21C3). For to-bar use ⥙ (U+2959). Next: from bar.
⚡ Quick Reference — Down Harpoon With Barb Right
U+21C2Arrows block
⇂Hexadecimal reference
⇂Decimal reference
⇂HTML5 named entity for U+21C2
Name Value
──────────── ──────────
Unicode U+21C2
Hex code ⇂
HTML code ⇂
Named entity ⇂
CSS code \21C2
Related U+21C3 = Barb left (⇃); U+2959 = To bar; U+296F = Down-up pair (⥯)Complete HTML Example
This example demonstrates the Down Harpoon With Barb Right (⇂) using hexadecimal code, decimal HTML code, the named entity ⇂, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\21C2";
}
</style>
</head>
<body>
<p>Down Harpoon With Barb Right using Hexadecimal: ⇂</p>
<p>Down Harpoon With Barb Right using HTML Code: ⇂</p>
<p>Down Harpoon With Barb Right using HTML Entity: ⇂</p>
<p id="point">Down Harpoon With Barb Right using CSS Entity: </p>
</body>
</html>🌐 Browser Support
U+21C2 is widely supported in modern browsers when rendered with a font that includes Arrows:
👀 Live Preview
See the Down Harpoon With Barb Right (⇂) in math and logic contexts:
🧠 How It Works
Hexadecimal Code
⇂ uses the Unicode hexadecimal value 21C2 to display the Down Harpoon With Barb Right. The x prefix indicates hexadecimal format.
Decimal HTML Code
⇂ uses the decimal Unicode value 8642 to display the same character.
Named HTML Entity
⇂ is the HTML5 named entity for U+21C2 (down harpoon, barb right). It is easy to read in source and resolves to ⇂.
CSS Entity
\21C2 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+21C2. Barb left: ⇃ (⇃). Serve HTML as UTF-8.
Use Cases
The Down Harpoon With Barb Right (⇂) is commonly used in:
Limits, convergence, or down-to relations with a harpoon (barb right).
Formal logic, proof notation, or maps-to / reduces-to relations.
Technical flows and specs that use harpoon symbols.
Downward flow with a harpoon (barb right) 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
\21C2in CSS::before/::afterfor harpoon icons - Serve pages with UTF-8 (
<meta charset="utf-8">)
Don’t
- Confuse
⇂(⇂, barb right) with⇃(⇃, barb left) - Confuse ⇂ with ↓ (
↓, plain down arrow) - Put CSS escape
\21C2in 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
\21C2Unicode U+21C2 — DOWNWARDS HARPOON WITH BARB RIGHT
Mirror of barb left: ⇃ via ⇃ (U+21C3)
Four methods, one glyph — widely supported in modern browsers
❓ Frequently Asked Questions
⇂ (hex), ⇂ (decimal), ⇂ (named entity), or \21C2 in CSS content. All produce ⇂.U+21C2 (DOWNWARDS HARPOON WITH BARB LEFT). Arrows block (U+2190–U+21FF). Hex 21C2, decimal 8642. A downward harpoon with the barb on the left.⇂ is easier to read in source than ⇂ or ⇂, but all produce ⇂. The CSS escape \21C2 is used in stylesheets in the content property of pseudo-elements.⇂ is the Down Harpoon With Barb Right (⇂, U+21C2)—barb on the right. The Down Harpoon With Barb Left (⇃, U+21C3, ⇃) has the barb on the left. 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
