HTML Entity for Up White Arrow On Pedestal (⇫)

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

What You'll Learn

How to display the Up White Arrow On Pedestal (⇫) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+21EB (UPWARDS WHITE ARROW ON PEDESTAL) in the Arrows block (U+2190–U+21FF)—an upward white arrow with a pedestal base, used for directional icons, UI design, navigational elements, and scroll-to-top indicators.

Render it with ⇫, ⇫, or CSS escape \21EB. There is no named HTML entity. Compare ⇪ (Up White Arrow Bar, from-bar variant) and ⇧ (Up White Arrow, plain white arrow without pedestal).

⚡ Quick Reference — Up White Arrow On Pedestal

Unicode U+21EB

Arrows block

Hex Code ⇫

Hexadecimal reference

HTML Code ⇫

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+21EB
Hex code       ⇫
HTML code      ⇫
Named entity   (none)
CSS code       \21EB
Official name  UPWARDS WHITE ARROW ON PEDESTAL
Related        U+21EA = Up white arrow bar; U+21E7 = Up white arrow
Block          Arrows (U+2190–U+21FF)
1

Complete HTML Example

A simple example showing ⇫ with hex, decimal, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\21EB";
  }
 </style>
</head>
<body>
<p>Up White Arrow On Pedestal (hex): &#x21EB;</p>
<p>Up White Arrow On Pedestal (decimal): &#8683;</p>
<p id="point">Up White Arrow On Pedestal (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+21EB 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 White Arrow On Pedestal (⇫) in navigation and UI contexts:

Large glyph
Scroll to top Top ⇫
vs white arrow bar ⇫ pedestal   ⇪ from bar
Navigation Move up ⇫
Numeric refs &#x21EB; &#8683; \21EB

🧠 How It Works

1

Hexadecimal Code

&#x21EB; uses the Unicode hexadecimal value 21EB to display the Up White Arrow On Pedestal. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\21EB is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All three methods produce: . Unicode U+21EB. No named HTML entity—use numeric codes in markup. Serve HTML as UTF-8.

Use Cases

The Up White Arrow On Pedestal (⇫) is commonly used in:

💻 UI design

Navigation icons and upward movement with a pedestal base.

📜 Navigation

Menus, toolbars, and wayfinding with pedestal-style arrows.

⬆️ Scroll to top

Return-to-top buttons and page navigation controls.

📊 Infographics

Directional flow and upward progression in charts and diagrams.

📖 Documentation

Explain arrow variants and Unicode symbol references.

🎨 Web design

Design systems with white arrow glyphs on pedestal bases.

💡 Best Practices

Do

  • Use &#x21EB; or &#8683; consistently in markup
  • Add aria-label when the symbol means scroll to top or move up
  • Pair ⇫ with a visible label in UI controls
  • Use \21EB in CSS ::before / ::after for pedestal-arrow icons
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Expect a named entity—none exists for U+21EB
  • Confuse ⇫ (pedestal) with ⇪ (from bar) or ⇧ (plain white arrow)
  • Put CSS escape \21EB in HTML text nodes
  • Rely on the symbol alone in accessibility-critical UIs
  • Assume decorative fonts include all Arrows glyphs

Key Takeaways

1

Two HTML numeric references render ⇫

&#x21EB; &#8683;
2

For CSS stylesheets, use the escape in the content property

\21EB
3

Unicode U+21EB — UPWARDS WHITE ARROW ON PEDESTAL

4

Arrows block (U+2190–U+21FF)

5

Distinct from ⇪ (Up White Arrow Bar) and ⇧ (Up White Arrow)

❓ Frequently Asked Questions

Use &#x21EB; (hex), &#8683; (decimal), or \21EB in CSS content. There is no named entity. All produce ⇫.
U+21EB (UPWARDS WHITE ARROW ON PEDESTAL). Arrows block (U+2190–U+21FF). Hex 21EB, decimal 8683. Used for navigation, UI design, and pedestal-style upward indicators.
For directional icons, UI design, navigational elements, scroll-to-top controls, web interfaces, and design components that need an upward white arrow on a pedestal base.
HTML references (&#8683; or &#x21EB;) go in markup. The CSS escape \21EB is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
Named entities cover common ASCII, Latin-1, and frequently used symbols. Many Arrows block characters including U+21EB have no named entity—use &#x21EB; or &#8683; in HTML.

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