HTML Entity for Up Double Arrow White (⇮)

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

What You'll Learn

How to display the Up Double Arrow White (⇮) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+21EE (UPWARDS WHITE ARROW) in the Arrows block (U+2190–U+21FF)—an upward-pointing white or outlined arrow, used for navigation, UI design, and directional cues on dark or colored backgrounds.

Render it with ⇮, ⇮, or CSS escape \21EE. There is no named HTML entity. Compare ⇑ (up double arrow, U+21D1, ⇑) for the filled double arrow, or ⇯ (up double arrow pedestal, U+21EF) for the pedestal variant.

⚡ Quick Reference — Up Double Arrow White

Unicode U+21EE

Arrows block

Hex Code ⇮

Hexadecimal reference

HTML Code ⇮

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+21EE
Hex code       ⇮
HTML code      ⇮
Named entity   (none)
CSS code       \21EE
Official name  UPWARDS WHITE ARROW
Related        U+21D1 = Up double arrow (⇑); U+21EF = Up double arrow pedestal
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: "\21EE";
  }
 </style>
</head>
<body>
<p>White Up (hex): &#x21EE;</p>
<p>White Up (decimal): &#8686;</p>
<p id="point">White Up (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+21EE 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 Double Arrow White (⇮) in navigation and UI contexts:

Large glyph
Scroll to top Top ⇮
On dark background Up ⇮
vs up double arrow ⇮ white   ⇑ filled
Numeric refs &#x21EE; &#8686;

🧠 How It Works

1

Hexadecimal Code

&#x21EE; uses the Unicode hexadecimal value 21EE to display the Up Double Arrow White. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\21EE 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+21EE in the Arrows block (U+2190–U+21FF). The white or outlined style works well on dark backgrounds and for lighter visual emphasis.

Use Cases

The Up Double Arrow White (⇮) is commonly used in:

🔝 Scroll to top

Back-to-top controls on dark or colored backgrounds where a white arrow stands out.

📜 Navigation

Menus and toolbars indicating upward movement with an outlined arrow style.

🎨 UI design

Buttons and controls on dark themes needing a lighter upward arrow glyph.

🛠 Iconography

Icon sets with white or outlined upward arrows for visual variety.

🗺 Diagrams

Flowcharts showing upward direction with a distinct white arrow variant.

💻 Web applications

Dashboards and dark-mode interfaces with upward navigation symbols.

💡 Best Practices

Do

  • Use &#x21EE; or &#8686; consistently in markup
  • Add aria-label when the arrow conveys navigation meaning
  • Use the white arrow variant on dark or high-contrast backgrounds
  • Use \21EE in CSS ::before / ::after for icon buttons
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Confuse ⇮ (white) with ⇑ (&uArr;, filled double arrow)
  • Use U+021EE or CSS \021EE—the correct value is U+21EE and \21EE
  • Expect a named entity—none exists for U+21EE
  • Put CSS escape \21EE in HTML text nodes
  • Assume all decorative fonts include extended Arrows glyphs

Key Takeaways

1

Two HTML numeric references render ⇮

&#x21EE; &#8686;
2

For CSS stylesheets, use \21EE in content

3

Unicode U+21EE — UPWARDS WHITE ARROW

4

Filled double arrow: ⇑ via &uArr; (U+21D1)

5

Three methods, one glyph — no named HTML entity

❓ Frequently Asked Questions

Use &#x21EE; (hex), &#8686; (decimal), or \21EE in CSS content. There is no named entity. All produce ⇮.
U+21EE (UPWARDS WHITE ARROW). Arrows block (U+2190–U+21FF). Hex 21EE, decimal 8686.
In navigation elements, buttons, UI design, iconography, and any content needing upward movement with a white or outlined arrow style—especially on dark backgrounds.
HTML references (&#8686; or &#x21EE;) go in markup. The CSS escape \21EE is used in stylesheets, typically in the content property of pseudo-elements.
Named HTML entities cover common symbols like &uArr; (U+21D1). Extended Arrows block characters such as U+21EE 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