HTML Entity for Down Two Headed Arrow (↡)

What You'll Learn
How to display the Down Two Headed Arrow (↡) in HTML using hexadecimal, decimal, the named entity ↡, and CSS escape methods. This character is U+21A1 (DOWNWARDS TWO HEADED ARROW) in the Arrows block (U+2190–U+21FF)—a downwards arrow with two heads, often used in mathematical notation, flowcharts, navigation, and technical content.
Render it with ↡, ↡, ↡, or CSS escape \21A1. Do not confuse ↡ (capital D, U+21A1) with ⇓ (⇓, double down, U+21D3) or ↓ (↓, single down, U+2193).
⚡ Quick Reference — Down Two Headed Arrow
U+21A1Arrows block
↡Hexadecimal reference
↡Decimal reference
↡HTML5 named entity (Darr, capital D)
Name Value
──────────── ──────────
Unicode U+21A1
Hex code ↡
HTML code ↡
Named entity ↡
CSS code \21A1
Related U+2193 = Down arrow (↓); U+21D3 = Double down (⇓)Complete HTML Example
This example demonstrates the Down Two Headed Arrow (↡) using hexadecimal code, decimal HTML code, the named entity ↡, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\21A1";
}
</style>
</head>
<body>
<p>Down Two Headed Arrow using Hexadecimal: ↡</p>
<p>Down Two Headed Arrow using HTML Code: ↡</p>
<p>Down Two Headed Arrow using HTML Entity: ↡</p>
<p id="point">Down Two Headed Arrow using CSS Entity: </p>
</body>
</html>🌐 Browser Support
U+21A1 is widely supported in modern browsers when rendered with a font that includes Arrows:
👀 Live Preview
See the Down Two Headed Arrow (↡) in navigation and UI contexts:
🧠 How It Works
Hexadecimal Code
↡ uses the Unicode hexadecimal value 21A1 to display the Down Two Headed Arrow. The x prefix indicates hexadecimal format.
Decimal HTML Code
↡ uses the decimal Unicode value 8609 to display the same character.
Named HTML Entity
↡ is the HTML5 named entity for U+21A1 (DOWNWARDS TWO HEADED ARROW). It is easy to read in source and resolves to ↡.
CSS Entity
\21A1 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+21A1. Double down: ⇓ (⇓). Serve HTML as UTF-8.
Use Cases
The Down Two Headed Arrow (↡) is commonly used in:
Scroll down, expand, or “more below” in menus, headers, and links.
Signal scroll down, continue reading, or emphasis on downward action.
Buttons, sort controls (descending), and interactive features.
Bidirectional or two-headed downward relations in math and logic.
Indicate downward flow or expand/collapse in process and logic diagrams.
Hint at scroll or down movement when paired with labels or aria-label.
💡 Best Practices
Do
- Use
↡for readable markup, or↡/↡ - Add
aria-labelwhen the symbol means scroll down, expand, or move downward - Pair ↡ with a tooltip or label when meaning may not be obvious
- Use
\21A1in CSS::before/::afterfor sort or scroll icons - Serve pages with UTF-8 (
<meta charset="utf-8">)
Don’t
- Confuse
↡(↡, two-headed) with⇓(⇓, double down) - Confuse
↡with↓(↓, single down) - Put CSS escape
\21A1in 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
\21A1Unicode U+21A1 — DOWNWARDS TWO HEADED ARROW
Not ⇓ (⇓) or ↓ (↓) — different entities
Four methods, one glyph — widely supported in modern browsers
❓ Frequently Asked Questions
↡ (hex), ↡ (decimal), ↡ (named entity), or \21A1 in CSS content. All produce ↡.U+21A1 (DOWNWARDS TWO HEADED ARROW). Arrows block (U+2190–U+21FF). Hex 21A1, decimal 8609. A two-headed downward arrow.↡ is easier to read in source than ↡ or ↡, but all produce ↡. The CSS escape \21A1 is used in stylesheets in the content property of pseudo-elements.↡ is the named HTML entity for the Downwards Two Headed Arrow (↡, U+21A1). The capital D distinguishes it from ⇓ (⇓, double down) and ↓ (↓, single down). All three are valid HTML5 arrow entities for different glyphs.Explore More HTML Entities!
Discover 1500+ HTML character references — arrows, symbols, math operators, and more.
8 people found this page helpful
