HTML Entity for Down Dashed Arrow (⇣)

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

What You'll Learn

How to display the Down Dashed Arrow (⇣) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+21E3 (DOWNWARDS DASHED ARROW) in the Arrows block (U+2190–U+21FF)—a downward arrow drawn with a dashed or broken line style, often used in UI, navigation menus, and as a softer visual cue for scroll or expand.

Render it with ⇣, ⇣, or CSS escape \21E3. There is no named HTML entity for this symbol. For a solid down arrow use ↓ (↓, U+2193).

⚡ Quick Reference — Down Dashed Arrow

Unicode U+21E3

Arrows block

Hex Code ⇣

Hexadecimal reference

HTML Code ⇣

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+21E3
Hex code       ⇣
HTML code      ⇣
Named entity   (none)
CSS code       \21E3
Related        U+2193 = Down arrow (↓); U+21B3 = Tip right
1

Complete HTML Example

This example demonstrates the Down Dashed Arrow (⇣) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\21E3";
  }
 </style>
</head>
<body>
<p>Down Dashed Arrow using Hexadecimal: &#x21E3;</p>
<p>Down Dashed Arrow using HTML Code: &#8675;</p>
<p id="point">Down Dashed Arrow using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+21E3 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 Dashed Arrow (⇣) in UI and navigation contexts:

Large glyph
Scroll cue Scroll down ⇣
vs solid down ⇣ dashed   ↓ solid
Expand hint More below ⇣
Numeric refs &#x21E3; &#8675;

🧠 How It Works

1

Hexadecimal Code

&#x21E3; uses the Unicode hexadecimal value 21E3 to display the Down Dashed Arrow. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

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

CSS stylesheet
=

Same visual result

All three methods produce: . Unicode U+21E3. No named HTML entity—use numeric codes in markup. Serve HTML as UTF-8.

Use Cases

The Down Dashed Arrow (⇣) is commonly used in:

💻 User interfaces

Softer or dashed down indicators in buttons, menus, and controls.

📜 Navigation menus

Scroll down, expand, or “more below” in nav and headers with a dashed style.

👁 Visual cues

Signal scroll down or continue reading with a less emphatic dashed arrow.

📊 Flowcharts

Optional or secondary flow downward with a dashed arrow.

📖 Documentation

Document UI behavior (scroll, expand down) in design systems.

♿ Accessibility

Hint at scroll or down movement with a distinct dashed symbol when paired with labels.

💡 Best Practices

Do

  • Use &#x21E3; or &#8675; consistently in markup
  • Add aria-label when the symbol means scroll down or expand
  • Pair ⇣ with a tooltip or label when meaning may not be obvious
  • Use \21E3 in CSS ::before / ::after for scroll or expand icons
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Expect a named entity—none exists for U+21E3
  • Confuse ⇣ (dashed) with ↓ (&darr;, solid down)
  • Put CSS escape \21E3 in HTML text nodes
  • Rely on the symbol alone in accessibility-critical UIs
  • Assume decorative fonts include all Arrows glyphs

Key Takeaways

1

Two HTML numeric references render ⇣

&#x21E3; &#8675;
2

For CSS stylesheets, use the escape in the content property

\21E3
3

Unicode U+21E3 — DOWNWARDS DASHED ARROW

4

No named HTML entity—numeric codes only

5

Three methods, one glyph — widely supported in modern browsers

❓ Frequently Asked Questions

Use &#x21E3; (hex), &#8675; (decimal), or \21E3 in CSS content. There is no named entity. All produce ⇣.
U+21E3 (DOWNWARDS DASHED ARROW). Arrows block (U+2190–U+21FF). Hex 21E3, decimal 8675. A downward arrow drawn with a dashed line style.
In user interfaces, navigation menus, scroll or expand cues, flowcharts for optional downward flow, and documentation where a softer dashed down indicator is needed.
HTML references (&#8675; or &#x21E3;) go in markup. The CSS escape \21E3 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
Named entities cover common ASCII, Latin-1, and frequently used symbols. Many Arrows block characters use numeric references only. Use &#x21E3; or &#8675; in HTML.

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