HTML Entity for Up Down White Arrow (⇳)

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

What You'll Learn

How to display the Up Down White Arrow (⇳) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+21F3 (UP DOWN WHITE ARROW) in the Arrows block (U+2190–U+21FF)—a bidirectional vertical arrow with a white or outlined style, used for navigation icons, UI design, and scroll controls on dark backgrounds.

Render it with ⇳, ⇳, or CSS escape \21F3. There is no named HTML entity. Compare ↕ (up down arrow, U+2195, ↕) for the filled variant, or ⇕ (up down double arrow, U+21D5, ⇕).

⚡ Quick Reference — Up Down White Arrow

Unicode U+21F3

Arrows block

Hex Code ⇳

Hexadecimal reference

HTML Code ⇳

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+21F3
Hex code       ⇳
HTML code      ⇳
Named entity   (none)
CSS code       \21F3
Official name  UP DOWN WHITE ARROW
Related        U+2195 = Up down arrow (↕); U+21D5 = Up down 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: "\21F3";
  }
 </style>
</head>
<body>
<p>White Up Down (hex): &#x21F3;</p>
<p>White Up Down (decimal): &#8691;</p>
<p id="point">White Up Down (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+21F3 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 Down White Arrow (⇳) in navigation and UI contexts:

Large glyph
Vertical scroll Scroll ⇳
On dark background Up Down ⇳
vs up down arrow ⇳ white   ↕ filled
Numeric refs &#x21F3; &#8691;

🧠 How It Works

1

Hexadecimal Code

&#x21F3; uses the Unicode hexadecimal value 21F3 to display the Up Down White Arrow. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\21F3 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+21F3 in the Arrows block (U+2190–U+21FF). The white or outlined style works well on dark backgrounds for bidirectional vertical navigation.

Use Cases

The Up Down White Arrow (⇳) is commonly used in:

🔝 Navigation icons

Toolbar and menu icons for vertical scroll on dark or colored themes.

📜 Scroll controls

Bidirectional vertical scroll indicators with a lighter arrow style.

🎨 UI design

Dark-mode buttons and controls needing outlined up-down arrows.

🛠 Iconography

Icon sets with white bidirectional vertical arrows for visual variety.

🗺 Diagrams

Flowcharts showing vertical movement with a distinct white arrow variant.

💻 Web applications

Dashboards and dark-mode interfaces with vertical navigation symbols.

💡 Best Practices

Do

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

Don’t

  • Confuse ⇳ (white) with ↕ (&varr;, filled up-down arrow)
  • Use U+021F3 or CSS \021F3—the correct value is U+21F3 and \21F3
  • Expect a named entity—none exists for U+21F3
  • Put CSS escape \21F3 in HTML text nodes
  • Assume all decorative fonts include extended Arrows glyphs

Key Takeaways

1

Two HTML numeric references render ⇳

&#x21F3; &#8691;
2

For CSS stylesheets, use \21F3 in content

3

Unicode U+21F3 — UP DOWN WHITE ARROW

4

Filled up-down arrow: ↕ via &varr; (U+2195)

5

Three methods, one glyph — no named HTML entity

❓ Frequently Asked Questions

Use &#x21F3; (hex), &#8691; (decimal), or \21F3 in CSS content. There is no named entity. All produce ⇳.
U+21F3 (UP DOWN WHITE ARROW). Arrows block (U+2190–U+21FF). Hex 21F3, decimal 8691.
In navigation icons, UI design, scroll controls, and any content needing bidirectional vertical movement with a white or outlined arrow style—especially on dark backgrounds.
HTML references (&#8691; or &#x21F3;) go in markup. The CSS escape \21F3 is used in stylesheets, typically in the content property of pseudo-elements.
Named HTML entities cover common symbols like &varr; (U+2195). Extended Arrows block characters such as U+21F3 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