HTML Entity for Up White Arrow Bar (⇪)

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

What You'll Learn

How to display the Up White Arrow Bar (⇪) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+21EA (UPWARDS WHITE ARROW FROM BAR) in the Arrows block (U+2190–U+21FF)—an upward white arrow rising from a horizontal bar, used for navigation, UI design, infographics, and symbolic direction indicators.

Render it with ⇪, ⇪, or CSS escape \21EA. There is no named HTML entity. Compare ⇧ (Up White Arrow, without bar) and ↥ (Up Arrow From Bar, filled style via ↥).

⚡ Quick Reference — Up White Arrow Bar

Unicode U+21EA

Arrows block

Hex Code ⇪

Hexadecimal reference

HTML Code ⇪

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+21EA
Hex code       ⇪
HTML code      ⇪
Named entity   (none)
CSS code       \21EA
Official name  UPWARDS WHITE ARROW FROM BAR
Also known as  Caps Lock indicator (⇪)
Related        U+21E7 = Up white arrow; U+21A5 = Up arrow from bar (↥)
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: "\21EA";
  }
 </style>
</head>
<body>
<p>Up White Arrow Bar (hex): &#x21EA;</p>
<p>Up White Arrow Bar (decimal): &#8682;</p>
<p id="point">Up White Arrow Bar (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+21EA 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 Bar (⇪) in navigation and UI contexts:

Large glyph
Caps Lock ⇪ Caps Lock
vs white arrow ⇪ from bar   ⇧ plain
Navigation Jump up ⇪
Numeric refs &#x21EA; &#8682; \21EA

🧠 How It Works

1

Hexadecimal Code

&#x21EA; uses the Unicode hexadecimal value 21EA to display the Up White Arrow Bar. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\21EA 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+21EA. No named HTML entity—use numeric codes in markup. Serve HTML as UTF-8.

Use Cases

The Up White Arrow Bar (⇪) is commonly used in:

⌨ Keyboard docs

Caps Lock indicator in shortcut and keyboard layout guides.

💻 UI design

Navigation icons and upward movement from a baseline bar.

📊 Infographics

Directional flow and upward progression in charts and diagrams.

📜 Navigation

Menus, toolbars, and symbolic wayfinding with bar-style arrows.

📖 Documentation

Explain arrow variants and Unicode symbol references.

🎨 Web design

Design systems with white arrow glyphs and bar indicators.

💡 Best Practices

Do

  • Use &#x21EA; or &#8682; consistently in markup
  • Add aria-label when the symbol means Caps Lock or scroll up from bar
  • Pair ⇪ with a visible label in UI controls
  • Use \21EA in CSS ::before / ::after for bar-arrow icons
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Expect a named entity—none exists for U+21EA
  • Confuse ⇪ (white from bar) with ⇧ (white, no bar) or ↥ (&mapstoup;, filled)
  • Put CSS escape \21EA 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 ⇪

&#x21EA; &#8682;
2

For CSS stylesheets, use the escape in the content property

\21EA
3

Unicode U+21EA — UPWARDS WHITE ARROW FROM BAR

4

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

5

Distinct from ⇧ (Up White Arrow without bar)

❓ Frequently Asked Questions

Use &#x21EA; (hex), &#8682; (decimal), or \21EA in CSS content. There is no named entity. All produce ⇪.
U+21EA (UPWARDS WHITE ARROW FROM BAR). Arrows block (U+2190–U+21FF). Hex 21EA, decimal 8682. Often used for navigation and Caps Lock notation.
For directional symbols, UI elements, infographics, symbolic navigation, keyboard documentation (Caps Lock), and web interfaces needing an upward white arrow with a baseline bar.
HTML references (&#8682; or &#x21EA;) go in markup. The CSS escape \21EA 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+21EA have no named entity—use &#x21EA; or &#8682; 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