HTML Entity for Down Double Arrow (⇓)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+21D3

What You'll Learn

How to display the Down Double Arrow (⇓) in HTML using hexadecimal, decimal, the named entity ⇓, and CSS escape methods. This character is U+21D3 (DOWNWARDS DOUBLE ARROW) in the Arrows block (U+2190–U+21FF)—a double-line downward arrow used for navigation, visual cues, UI emphasis, logic notation, and sort descending indicators.

Render it with ⇓, ⇓, ⇓, or CSS escape \21D3. For a single-line down arrow use ↓ (↓, U+2193). For a dashed down arrow use ⇣ (U+21E3).

⚡ Quick Reference — Down Double Arrow

Unicode U+21D3

Arrows block

Hex Code ⇓

Hexadecimal reference

HTML Code ⇓

Decimal reference

Named Entity ⇓

HTML5 named entity for U+21D3

Reference Table
Name           Value
────────────   ──────────
Unicode        U+21D3
Hex code       ⇓
HTML code      ⇓
Named entity   ⇓
CSS code       \21D3
Related        U+2193 = Down arrow (↓); U+21E3 = Dashed down
1

Complete HTML Example

This example demonstrates the Down Double Arrow (⇓) using hexadecimal code, decimal HTML code, the named entity ⇓, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\21D3";
  }
 </style>
</head>
<body>
<p>Down Double Arrow using Hexadecimal: &#x21D3;</p>
<p>Down Double Arrow using HTML Code: &#8659;</p>
<p>Down Double Arrow using HTML Entity: &dArr;</p>
<p id="point">Down Double Arrow using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+21D3 is widely supported in modern browsers when rendered with a font that includes Arrows:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See the Down Double Arrow (⇓) in navigation and UI contexts:

Large glyph
Scroll cue Scroll down ⇓
Sort descending Name ⇓
vs single down ⇓ double   ↓ single
Named entity &dArr; → ⇓
All HTML refs &#x21D3; &#8659; &dArr;

🧠 How It Works

1

Hexadecimal Code

&#x21D3; uses the Unicode hexadecimal value 21D3 to display the Down Double Arrow. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#8659; uses the decimal Unicode value 8659 to display the same character.

HTML markup
3

Named HTML Entity

&dArr; is the HTML5 named entity for U+21D3 (downwards double arrow). It is easy to read in source and resolves to ⇓.

HTML markup
4

CSS Entity

\21D3 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All four methods produce: . Unicode U+21D3. Single down: &darr; (↓). Serve HTML as UTF-8.

Use Cases

The Down Double Arrow (⇓) is commonly used in:

📜 Navigation

Scroll down, expand, or “more below” in menus, headers, and links.

👁 Visual cues

Signal scroll down, continue reading, or emphasis on downward action.

💻 UI elements

Buttons, sort controls (descending), and interactive features.

⊢ Logic notation

Logical implication downward or entailment in formal logic and math.

📊 Sort descending

Indicate sort Z–A or descending order in tables and data grids.

♿ Accessibility

Hint at scroll or down movement when paired with labels or aria-label.

💡 Best Practices

Do

  • Use &dArr; for readable markup, or &#x21D3; / &#8659;
  • Add aria-label when the symbol means sort descending or scroll down
  • Pair ⇓ with a tooltip or label when meaning may not be obvious
  • Use \21D3 in CSS ::before / ::after for sort or scroll icons
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Confuse &dArr; (⇓) with &darr; (↓, single down)
  • Confuse ⇓ (double) with ⇣ (dashed down, no named entity)
  • Put CSS escape \21D3 in HTML text nodes
  • Rely on the symbol alone in accessibility-critical UIs
  • Assume decorative fonts include all Arrows glyphs

Key Takeaways

1

Named entity available: &dArr;

&#x21D3; &#8659;
2

For CSS stylesheets, use the escape in the content property

\21D3
3

Unicode U+21D3 — DOWNWARDS DOUBLE ARROW

4

Not the same as single down: ↓ via &darr; (U+2193)

5

Four methods, one glyph — widely supported in modern browsers

❓ Frequently Asked Questions

Use &#x21D3; (hex), &#8659; (decimal), &dArr; (named entity), or \21D3 in CSS content. All produce ⇓.
U+21D3 (DOWNWARDS DOUBLE ARROW). Arrows block (U+2190–U+21FF). Hex 21D3, decimal 8659. A double-line downward arrow.
For navigation, visual cues (scroll down, expand), UI elements, logic notation, sort descending indicators, and documentation where strong downward emphasis is needed.
&dArr; is easier to read in source than &#8659; or &#x21D3;, but all produce ⇓. The CSS escape \21D3 is used in stylesheets in the content property of pseudo-elements.
No. &dArr; is the Down Double Arrow (⇓, U+21D3)—a double-line arrow. The single down arrow (↓, U+2193, &darr;) is a single-line arrow. They look similar but are different Unicode glyphs; the double arrow is often used for stronger emphasis or in logic.

Explore More HTML Entities!

Discover 1500+ HTML character references — arrows, symbols, math operators, and more.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful