HTML Entity for Up Double Arrow Pedestal (⇯)

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

What You'll Learn

How to display the Up Double Arrow Pedestal (⇯) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+21EF (UPWARDS ARROW WITH DOUBLE STROKE) in the Arrows block (U+2190–U+21FF)—an upward-pointing arrow with a pedestal or double-stroke base, used for navigation, UI design, and strong upward movement cues.

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

⚡ Quick Reference — Up Double Arrow Pedestal

Unicode U+21EF

Arrows block

Hex Code ⇯

Hexadecimal reference

HTML Code ⇯

Decimal reference

Named Entity

Use numeric codes only

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

🌐 Browser Support

U+21EF 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 Pedestal (⇯) in navigation and UI contexts:

Large glyph
Scroll to top Top ⇯
Navigation Move up ⇯
vs up double arrow ⇯ pedestal   ⇑ double
Numeric refs &#x21EF; &#8687;

🧠 How It Works

1

Hexadecimal Code

&#x21EF; uses the Unicode hexadecimal value 21EF to display the Up Double Arrow Pedestal. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\21EF 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+21EF in the Arrows block (U+2190–U+21FF). The pedestal or double-stroke base adds visual emphasis for upward navigation.

Use Cases

The Up Double Arrow Pedestal (⇯) is commonly used in:

🔝 Scroll to top

Back-to-top controls with pedestal-style upward arrow emphasis.

📜 Navigation

Menus and site navigation indicating upward movement or elevation.

🎨 UI design

Buttons and controls needing a bold upward arrow with a base or pedestal.

🛠 Iconography

Icon sets with pedestal upward arrows for navigation emphasis.

🗺 Diagrams

Flowcharts showing upward direction with a grounded or pedestal-style arrow.

💻 Web applications

Dashboards and software interfaces with emphasized upward navigation symbols.

💡 Best Practices

Do

  • Use &#x21EF; or &#8687; consistently in markup
  • Add aria-label when the arrow conveys navigation meaning
  • Distinguish ⇯ from ⇑ (&uArr;) when choosing arrow style
  • Use \21EF in CSS ::before / ::after for icon buttons
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

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

Key Takeaways

1

Two HTML numeric references render ⇯

&#x21EF; &#8687;
2

For CSS stylesheets, use \21EF in content

3

Unicode U+21EF — UPWARDS ARROW WITH DOUBLE STROKE

4

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

5

Three methods, one glyph — no named HTML entity

❓ Frequently Asked Questions

Use &#x21EF; (hex), &#8687; (decimal), or \21EF in CSS content. There is no named entity. All produce ⇯.
U+21EF (UPWARDS ARROW WITH DOUBLE STROKE). Arrows block (U+2190–U+21FF). Hex 21EF, decimal 8687.
In navigation elements, buttons, UI design, iconography, and any content needing upward movement with pedestal or double-stroke emphasis.
HTML references (&#8687; or &#x21EF;) go in markup. The CSS escape \21EF 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+21EF 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