HTML Entity for Downward Paired Arrows (⇊)

What You'll Learn
How to display the Downward Paired Arrows (⇊) in HTML using hexadecimal, decimal, the named entity ⇊, and CSS escape methods. This character is U+21CA (DOWNWARDS PAIRED ARROWS) in the Arrows block (U+2190–U+21FF)—two downward arrows side by side, often used in logic flows, diagrams, and mathematical notation.
Render it with ⇊, ⇊, ⇊, or CSS escape \21CA. Do not confuse ⇊ (paired down, U+21CA) with ⇓ (⇓, double-line down) or ↡ (↡, two-headed down).
⚡ Quick Reference — Downward Paired Arrows
U+21CAArrows block
⇊Hexadecimal reference
⇊Decimal reference
⇊HTML5 named entity for U+21CA
Name Value
──────────── ──────────
Unicode U+21CA
Hex code ⇊
HTML code ⇊
Named entity ⇊
CSS code \21CA
Related U+21C8 = Up paired (⇈); U+21D3 = Double down (⇓)Complete HTML Example
This example demonstrates the Downward Paired Arrows (⇊) using hexadecimal code, decimal HTML code, the named entity ⇊, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\21CA";
}
</style>
</head>
<body>
<p>Downward Paired Arrows using Hexadecimal: ⇊</p>
<p>Downward Paired Arrows using HTML Code: ⇊</p>
<p>Downward Paired Arrows using HTML Entity: ⇊</p>
<p id="point">Downward Paired Arrows using CSS Entity: </p>
</body>
</html>🌐 Browser Support
U+21CA is widely supported in modern browsers when rendered with a font that includes Arrows:
👀 Live Preview
See the Downward Paired Arrows (⇊) in logic and diagram contexts:
🧠 How It Works
Hexadecimal Code
⇊ uses the Unicode hexadecimal value 21CA to display the Downward Paired Arrows. The x prefix indicates hexadecimal format.
Decimal HTML Code
⇊ uses the decimal Unicode value 8650 to display the same character.
Named HTML Entity
⇊ is the HTML5 named entity for U+21CA (Downwards Paired Arrows). It is easy to read in source and resolves to ⇊.
CSS Entity
\21CA 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+21CA. Up paired: ⇈ (⇈). Serve HTML as UTF-8.
Use Cases
The Downward Paired Arrows (⇊) is commonly used in:
Represent paired or parallel downward relations in logic and formal notation.
Show two parallel downward paths in flowcharts and technical diagrams.
Indicate paired downward mappings or relations in mathematical content.
Explain parallel downward steps in specs and developer docs.
Distinctive paired-down icon in symbol libraries and design systems.
Use aria-label when the symbol conveys direction or paired flow.
💡 Best Practices
Do
- Prefer
⇊for readable markup, or numeric⇊/⇊ - Add
aria-labelwhen the symbol means paired downward flow or parallel paths - Pair ⇊ with a legend in diagrams and logic notation
- Use
\21CAin CSS::before/::afterfor paired-down icons - Serve pages with UTF-8 (
<meta charset="utf-8">)
Don’t
- Confuse
⇊(⇊, paired down) with⇓(⇓, double-line down) - Confuse
⇊with↡(↡, two-headed down) or↓(↓, single down) - Put CSS escape
\21CAin 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
\21CAUnicode U+21CA — DOWNWARDS PAIRED ARROWS
Not ⇓ (⇓) or ↓ (↓) — different entities
Four methods, one glyph — widely supported in modern browsers
❓ Frequently Asked Questions
⇊ (hex), ⇊ (decimal), ⇊ (named entity), or \21CA in CSS content. All produce ⇊.U+21CA (DOWNWARDS PAIRED ARROWS). Arrows block (U+2190–U+21FF). Hex 21CA, decimal 8650. Two downward arrows side by side.⇊ is easier to read in source than ⇊ or ⇊, but all produce ⇊. The CSS escape \21CA is used in stylesheets in the content property of pseudo-elements.⇊ is the named HTML entity for the Downwards Paired Arrows (⇊, U+21CA). The name suggests “double down arrow.” Do not confuse with ⇓ (⇓), ↡ (↡), or ↓ (↓)—each is a different HTML5 arrow entity.Explore More HTML Entities!
Discover 1500+ HTML character references — arrows, symbols, math operators, and more.
8 people found this page helpful
