HTML Entity for Up Dashed Arrow (⇡)

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

What You'll Learn

How to display the Up Dashed Arrow (⇡) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+21E1 (UPWARDS DASHED ARROW) in the Arrows block (U+2190–U+21FF)—an upward-pointing arrow with a dashed shaft, used for navigation, UI design, and directional cues with a softer visual emphasis.

Render it with ⇡, ⇡, or CSS escape \21E1. There is no named HTML entity. Compare ↑ (up arrow, U+2191, ↑) for a solid upward arrow, or ⇑ (up double arrow, U+21D1, ⇑).

⚡ Quick Reference — Up Dashed Arrow

Unicode U+21E1

Arrows block

Hex Code ⇡

Hexadecimal reference

HTML Code ⇡

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+21E1
Hex code       ⇡
HTML code      ⇡
Named entity   (none)
CSS code       \21E1
Official name  UPWARDS DASHED ARROW
Related        U+2191 = Up arrow (↑); U+21D1 = Up double arrow (⇑)
Block          Arrows (U+2190–U+21FF)
1

Complete HTML Example

A simple example showing ⇡ using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\21E1";
  }
 </style>
</head>
<body>
<p>Dashed Up (hex): &#x21E1;</p>
<p>Dashed Up (decimal): &#8673;</p>
<p id="point">Dashed Up (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+21E1 is 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 Up Dashed Arrow (⇡) in navigation and UI contexts:

Large glyph
Scroll to top Top ⇡
Navigation Move up ⇡
vs solid up arrow ⇡ dashed   ↑ solid
Numeric refs &#x21E1; &#8673;

🧠 How It Works

1

Hexadecimal Code

&#x21E1; uses the Unicode hexadecimal value 21E1 to display the Up Dashed Arrow. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

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

CSS stylesheet
=

Same visual result

All three methods produce: . Unicode U+21E1 in the Arrows block (U+2190–U+21FF). The dashed shaft provides a softer visual cue for upward navigation.

Use Cases

The Up Dashed Arrow (⇡) is commonly used in:

🔝 Scroll to top

Back-to-top controls with a lighter, dashed arrow style.

📜 Navigation

Menus indicating upward movement or alternative navigation paths.

🎨 UI design

Buttons and controls needing directional cues with visual variety.

🛠 Iconography

Icon sets with dashed upward arrows for secondary actions.

🗺 Diagrams

Flowcharts showing optional or less prominent upward direction.

💻 Web applications

Dashboards with dashed arrows for secondary upward navigation.

💡 Best Practices

Do

  • Use &#x21E1; or &#8673; consistently in markup
  • Add aria-label when the arrow conveys navigation meaning
  • Use dashed arrows for secondary or less prominent upward actions
  • Use \21E1 in CSS ::before / ::after for icon buttons
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Confuse ⇡ (dashed) with ↑ (&uarr;, solid up arrow)
  • Use U+021E1 or CSS \021E1—the correct value is U+21E1 and \21E1
  • Expect a named entity—none exists for U+21E1
  • Put CSS escape \21E1 in HTML text nodes
  • Assume all decorative fonts include extended Arrows glyphs

Key Takeaways

1

Two HTML numeric references render ⇡

&#x21E1; &#8673;
2

For CSS stylesheets, use \21E1 in content

3

Unicode U+21E1 — UPWARDS DASHED ARROW

4

Solid up arrow: ↑ via &uarr; (U+2191)

5

Three methods, one glyph — no named HTML entity

❓ Frequently Asked Questions

Use &#x21E1; (hex), &#8673; (decimal), or \21E1 in CSS content. There is no named entity. All produce ⇡.
U+21E1 (UPWARDS DASHED ARROW). Arrows block (U+2190–U+21FF). Hex 21E1, decimal 8673.
In navigation elements, UI buttons, iconography, and any content needing upward movement with a dashed or less prominent arrow style.
HTML references (&#8673; or &#x21E1;) go in markup. The CSS escape \21E1 is used in stylesheets, typically in the content property of pseudo-elements.
Named HTML entities cover common symbols like &uarr; (U+2191). Extended Arrows block characters such as U+21E1 use numeric hex or decimal references—standard practice for specialized arrow glyphs.

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