HTML Entity for Up Arrow Bar (⤒)

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

What You'll Learn

How to display the Up Arrow Bar (⤒) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2912 (UPWARDS ARROW TO BAR) in the Supplemental Arrows-B block (U+2900–U+297F)—an upward-pointing arrow with a horizontal bar, used in navigation, UI design, and directional indicators.

Render it with ⤒, ⤒, or CSS escape \2912. There is no named HTML entity. Compare ↑ (up arrow, U+2191, ↑) for the plain upward arrow without a bar.

⚡ Quick Reference — Up Arrow Bar

Unicode U+2912

Supplemental Arrows-B

Hex Code ⤒

Hexadecimal reference

HTML Code ⤒

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2912
Hex code       ⤒
HTML code      ⤒
Named entity   (none)
CSS code       \2912
Meaning        Upwards arrow to bar
Related        U+2191 = Up arrow (↑)
Block          Supplemental Arrows-B (U+2900–U+297F)
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: "\2912";
  }
 </style>
</head>
<body>
<p>Up Arrow Bar (hex): &#x2912;</p>
<p>Up Arrow Bar (decimal): &#10514;</p>
<p id="point">Up Arrow Bar (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+2912 is supported in modern browsers when rendered with a font that includes Supplemental Arrows-B:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See the Up Arrow Bar (⤒) in navigation and UI contexts:

Large glyph
Navigation Jump to header ⤒
Level indicator Move up to bar ⤒
vs up arrow ⤒ to bar   ↑ plain up
Numeric refs &#x2912; &#10514;

🧠 How It Works

1

Hexadecimal Code

&#x2912; uses the Unicode hexadecimal value 2912 to display the Up Arrow Bar. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\2912 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+2912 in Supplemental Arrows-B (U+2900–U+297F). No named HTML entity—use numeric codes in markup. The bar adds visual emphasis for movement to a specific level.

Use Cases

The Up Arrow Bar (⤒) is commonly used in:

🔝 Navigation

Menus, breadcrumbs, and site navigation with upward movement to a bar or level.

🎨 UI design

Buttons and interactive elements that need directional indicators with bar emphasis.

🛠 Iconography

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

🗺 Diagrams

Maps, flowcharts, and instructional content showing upward direction to a boundary.

💻 Web applications

Dashboards and software interfaces with level-based navigation symbols.

📚 Education

Tutorials and materials about directional concepts with bar emphasis.

💡 Best Practices

Do

  • Use &#x2912; or &#10514; consistently in markup
  • Add aria-label when the arrow conveys navigation meaning
  • Choose fonts with Supplemental Arrows-B support (Segoe UI Symbol, Cambria Math)
  • Use \2912 in CSS ::before / ::after for icon buttons
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Confuse ⤒ (U+2912) with ↑ (&uarr;, plain up arrow U+2191)
  • Use U+02912 or CSS \02912—the correct value is U+2912 and \2912
  • Expect a named entity—none exists for U+2912
  • Put CSS escape \2912 in HTML text nodes
  • Assume all decorative fonts include Supplemental Arrows-B glyphs

Key Takeaways

1

Two HTML numeric references render ⤒

&#x2912; &#10514;
2

For CSS stylesheets, use \2912 in content

3

Unicode U+2912 — UPWARDS ARROW TO BAR

4

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

5

Three methods, one glyph — no named HTML entity

❓ Frequently Asked Questions

Use &#x2912; (hex), &#10514; (decimal), or \2912 in CSS content. There is no named entity. All produce ⤒.
U+2912 (UPWARDS ARROW TO BAR). Supplemental Arrows-B block (U+2900–U+297F). Hex 2912, decimal 10514. An upward-pointing arrow with a horizontal bar.
In navigation elements, UI buttons, iconography, directional indicators, and any content that needs upward movement with bar emphasis or movement to a specific level or position.
HTML references (&#10514; or &#x2912;) go in markup. The CSS escape \2912 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
Named HTML entities cover common ASCII, Latin-1, and frequently used symbols. Supplemental Arrows-B characters like ⤒ (U+2912) use numeric codes because they are part of specialized Unicode blocks—standard practice for extended arrow symbols.

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