HTML Entity for Up Arrow From Bar (↥)

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

What You'll Learn

How to display the Up Arrow From Bar (↥) in HTML using hexadecimal, decimal, the named entity ↥, and CSS escape methods. This character is U+21A5 (UPWARDS ARROW FROM BAR) in the Arrows block (U+2190–U+21FF)—an upward-pointing arrow rising from a horizontal bar, used in navigation and UI direction cues.

Render it with ↥, ↥, ↥, or CSS escape \21A5. Compare ↑ (up arrow, U+2191, ↑) for a plain arrow without a bar base, or ⤒ (up arrow bar, U+2912) for arrow-to-bar notation.

⚡ Quick Reference — Up Arrow From Bar

Unicode U+21A5

Arrows block

Hex Code ↥

Hexadecimal reference

HTML Code ↥

Decimal reference

Named Entity ↥

HTML5 named entity for U+21A5

Reference Table
Name           Value
────────────   ──────────
Unicode        U+21A5
Hex code       ↥
HTML code      ↥
Named entity   ↥
CSS code       \21A5
Meaning        Upwards arrow from bar
Related        U+2191 = Up arrow (↑); U+2912 = Up arrow bar (⤒)
Block          Arrows (U+2190–U+21FF)
1

Complete HTML Example

A simple example showing ↥ with hex, decimal, named entity, and CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\21A5";
  }
 </style>
</head>
<body>
<p>Up Arrow From Bar (hex): &#x21A5;</p>
<p>Up Arrow From Bar (decimal): &#8613;</p>
<p>Up Arrow From Bar (entity): &mapstoup;</p>
<p id="point">Up Arrow From Bar (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+21A5 is widely 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 From Bar (↥) in navigation and UI contexts:

Large glyph
Scroll to top Back to top ↥
From baseline Move up from bar ↥
vs up arrow ↥ from bar   ↑ plain up
Named entity &mapstoup; → ↥
All HTML refs &#x21A5; &#8613; &mapstoup;

🧠 How It Works

1

Hexadecimal Code

&#x21A5; uses the Unicode hexadecimal value 21A5 to display the Up Arrow From Bar. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

Named HTML Entity

&mapstoup; is the HTML5 named entity for U+21A5. It is easy to read in source and resolves to the same character (↥).

HTML markup
4

CSS Entity

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

CSS stylesheet
=

Same visual result

All four methods produce: . Unicode U+21A5 in the Arrows block (U+2190–U+21FF). The bar provides a visual base for upward movement from a starting point.

Use Cases

The Up Arrow From Bar (↥) is commonly used in:

🔝 Scroll to top

Back-to-top buttons showing upward movement from a baseline or footer bar.

📜 Navigation

Menus and controls indicating upward movement from a base position.

🎨 UI design

Buttons and interactive elements with a bar base and upward direction cue.

🛠 Iconography

Icon sets and design systems requiring upward arrows from a horizontal bar.

🗺 Diagrams

Flowcharts showing upward direction from a baseline or starting position.

💻 Web applications

Dashboards and software interfaces with level-based upward navigation.

💡 Best Practices

Do

  • Use &mapstoup; for readable markup, or &#x21A5; / &#8613;
  • Add aria-label when the arrow conveys meaning (e.g. scroll to top)
  • Pair arrows with labels in navigation and call-to-action buttons
  • Use \21A5 in CSS ::before / ::after for icon buttons
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Confuse ↥ (from bar) with ↑ (&uarr;, plain up arrow)
  • Confuse ↥ with ⤒ (up arrow to bar, U+2912)
  • Use U+021A5 or CSS \021A5—the correct value is U+21A5 and \21A5
  • Put CSS escape \21A5 in HTML text nodes
  • Rely on the symbol alone without context in accessibility-critical UIs

Key Takeaways

1

Named entity available: &mapstoup;

&#x21A5; &#8613;
2

For CSS stylesheets, use \21A5 in content

3

Unicode U+21A5 — UPWARDS ARROW FROM BAR

4

Plain up arrow: ↑ via &uarr; (U+2191)

5

Four methods, one glyph — widely supported in modern browsers

❓ Frequently Asked Questions

Use &#x21A5; (hex), &#8613; (decimal), &mapstoup; (named entity), or \21A5 in CSS content. All produce ↥.
U+21A5 (UPWARDS ARROW FROM BAR). Arrows block (U+2190–U+21FF). Hex 21A5, decimal 8613. An upward-pointing arrow originating from a horizontal bar.
In navigation elements, scroll-to-top buttons, UI design, iconography, and any content that needs upward movement originating from a base or horizontal bar.
&mapstoup; is easier to read in source than &#8613; or &#x21A5;, but all produce ↥. The named entity is part of the HTML5 entity set for arrows.
HTML references (&#8613;, &#x21A5;, or &mapstoup;) go in markup. The CSS escape \21A5 is used in stylesheets, typically in the content property of pseudo-elements.

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