HTML Entity for Up Arrow Pedestal Vertical (⇭)

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

What You'll Learn

How to display the Up Arrow Pedestal Vertical (⇭) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+21ED (UPWARDS WHITE ARROW ON PEDESTAL WITH VERTICAL BAR) in the Arrows block (U+2190–U+21FF)—an upward-pointing arrow on a vertical pedestal base, used in navigation and UI direction cues.

Render it with ⇭, ⇭, or CSS escape \21ED. There is no named HTML entity. Compare ⇬ (up arrow pedestal horizontal, U+21EC) for the horizontal-bar pedestal variant, or ↑ (up arrow, ↑).

⚡ Quick Reference — Up Arrow Pedestal Vertical

Unicode U+21ED

Arrows block

Hex Code ⇭

Hexadecimal reference

HTML Code ⇭

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+21ED
Hex code       ⇭
HTML code      ⇭
Named entity   (none)
CSS code       \21ED
Official name  UPWARDS WHITE ARROW ON PEDESTAL WITH VERTICAL BAR
Related        U+21EC = Pedestal horizontal (⇬); U+2191 = Up 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: "\21ED";
  }
 </style>
</head>
<body>
<p>Pedestal Vertical (hex): &#x21ED;</p>
<p>Pedestal Vertical (decimal): &#8685;</p>
<p id="point">Pedestal Vertical (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+21ED 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 Arrow Pedestal Vertical (⇭) in navigation and UI contexts:

Large glyph
Scroll to top Top ⇭
Navigation Move up ⇭
vs pedestal horizontal ⇬ horizontal   ⇭ vertical
Numeric refs &#x21ED; &#8685;

🧠 How It Works

1

Hexadecimal Code

&#x21ED; uses the Unicode hexadecimal value 21ED to display the Up Arrow Pedestal Vertical. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\21ED 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+21ED in the Arrows block (U+2190–U+21FF). The vertical pedestal provides a stable visual base for upward navigation cues.

Use Cases

The Up Arrow Pedestal Vertical (⇭) is commonly used in:

🔝 Scroll to top

Back-to-top buttons with a vertical pedestal base design.

📜 Navigation

Menus and controls indicating upward movement with visual stability.

🎨 UI design

Buttons and interactive elements with pedestal-based upward arrows.

🛠 Iconography

Icon sets requiring upward arrows on vertical pedestal bases.

🗺 Diagrams

Flowcharts showing upward direction from a stable vertical base.

💻 Web applications

Dashboards and software interfaces with pedestal navigation symbols.

💡 Best Practices

Do

  • Use &#x21ED; or &#8685; consistently in markup
  • Add aria-label when the arrow conveys navigation meaning
  • Choose fonts with Arrows block support (Segoe UI Symbol, Arial Unicode MS)
  • Use \21ED in CSS ::before / ::after for icon buttons
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Confuse ⇭ (vertical pedestal) with ⇬ (horizontal pedestal, U+21EC)
  • Use U+021ED or CSS \021ED—the correct value is U+21ED and \21ED
  • Expect a named entity—none exists for U+21ED
  • Put CSS escape \21ED in HTML text nodes
  • Assume all decorative fonts include extended Arrows glyphs

Key Takeaways

1

Two HTML numeric references render ⇭

&#x21ED; &#8685;
2

For CSS stylesheets, use \21ED in content

3

Unicode U+21ED — UPWARDS WHITE ARROW ON PEDESTAL WITH VERTICAL BAR

4

Pedestal horizontal variant: ⇬ (U+21EC)

5

Three methods, one glyph — no named HTML entity

❓ Frequently Asked Questions

Use &#x21ED; (hex), &#8685; (decimal), or \21ED in CSS content. There is no named entity. All produce ⇭.
U+21ED (UPWARDS WHITE ARROW ON PEDESTAL WITH VERTICAL BAR). Arrows block (U+2190–U+21FF). Hex 21ED, decimal 8685.
In navigation elements, scroll-to-top buttons, UI design, iconography, and any content needing upward movement with a stable vertical pedestal base.
HTML references (&#8685; or &#x21ED;) go in markup. The CSS escape \21ED 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+21ED 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