HTML Entity for Up Arrow Pedestal Horizontal (⇬)

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

What You'll Learn

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

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

⚡ Quick Reference — Up Arrow Pedestal Horizontal

Unicode U+21EC

Arrows block

Hex Code ⇬

Hexadecimal reference

HTML Code ⇬

Decimal reference

Named Entity

Use numeric codes only

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

🌐 Browser Support

U+21EC 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 Horizontal (⇬) in navigation and UI contexts:

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

🧠 How It Works

1

Hexadecimal Code

&#x21EC; uses the Unicode hexadecimal value 21EC to display the Up Arrow Pedestal Horizontal. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

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

Use Cases

The Up Arrow Pedestal Horizontal (⇬) is commonly used in:

🔝 Scroll to top

Back-to-top buttons with a grounded 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 horizontal pedestal bases.

🗺 Diagrams

Flowcharts showing upward direction from a stable horizontal base.

💻 Web applications

Dashboards and software interfaces with pedestal navigation symbols.

💡 Best Practices

Do

  • Use &#x21EC; or &#8684; 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 \21EC in CSS ::before / ::after for icon buttons
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

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

Key Takeaways

1

Two HTML numeric references render ⇬

&#x21EC; &#8684;
2

For CSS stylesheets, use \21EC in content

3

Unicode U+21EC — UPWARDS WHITE ARROW ON PEDESTAL WITH HORIZONTAL BAR

4

Pedestal vertical variant: ⇭ (U+21ED)

5

Three methods, one glyph — no named HTML entity

❓ Frequently Asked Questions

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