HTML Entity for Up Arrow Tip Left (↰)

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

What You'll Learn

How to display the Up Arrow Tip Left (↰) in HTML using hexadecimal, decimal, the named entity ↰, and CSS escape methods. This character is U+21B0 (UPWARDS ARROW WITH TIP LEFTWARDS) in the Arrows block (U+2190–U+21FF)—an upward-pointing arrow with its tip bent to the left, used in navigation and UI direction cues.

Render it with ↰, ↰, ↰, or CSS escape \21B0. Compare ↑ (up arrow, U+2191, ↑) for a plain upward arrow, or ⇭ (up arrow pedestal vertical, U+21ED) for a pedestal variant.

⚡ Quick Reference — Up Arrow Tip Left

Unicode U+21B0

Arrows block

Hex Code ↰

Hexadecimal reference

HTML Code ↰

Decimal reference

Named Entity ↰

HTML5 named entity for U+21B0

Reference Table
Name           Value
────────────   ──────────
Unicode        U+21B0
Hex code       ↰
HTML code      ↰
Named entity   ↰
CSS code       \21B0
Official name  UPWARDS ARROW WITH TIP LEFTWARDS
Related        U+2191 = Up arrow (↑); U+21ED = Pedestal vertical (⇭)
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: "\21B0";
  }
 </style>
</head>
<body>
<p>Tip Left (hex): &#x21B0;</p>
<p>Tip Left (decimal): &#8624;</p>
<p>Tip Left (entity): &lsh;</p>
<p id="point">Tip Left (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+21B0 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 Tip Left (↰) in navigation and UI contexts:

Large glyph
Navigation Move up left ↰
Scroll to top Top ↰
vs plain up arrow ↰ tip left   ↑ plain up
Named entity &lsh; → ↰
All HTML refs &#x21B0; &#8624; &lsh;

🧠 How It Works

1

Hexadecimal Code

&#x21B0; uses the Unicode hexadecimal value 21B0 to display the Up Arrow Tip Left. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

Named HTML Entity

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

HTML markup
4

CSS Entity

\21B0 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+21B0 in the Arrows block (U+2190–U+21FF). The leftward tip indicates upward movement with a horizontal offset to the left.

Use Cases

The Up Arrow Tip Left (↰) is commonly used in:

🔝 Navigation

Menus and controls indicating upward movement with a leftward tip orientation.

📜 Scroll to top

Back-to-top buttons with a distinctive left-tipped upward arrow design.

🎨 UI design

Buttons and interactive elements with directional indicators and specific tip angles.

🛠 Iconography

Icon sets requiring upward arrows with leftward-pointing tips.

🗺 Diagrams

Flowcharts showing upward direction with a leftward tip emphasis.

💻 Web applications

Dashboards and software interfaces with angled upward navigation symbols.

💡 Best Practices

Do

  • Use &lsh; for readable markup, or &#x21B0; / &#8624;
  • Add aria-label when the arrow conveys navigation meaning
  • Choose fonts with Arrows block support (Segoe UI Symbol, Arial Unicode MS)
  • Use \21B0 in CSS ::before / ::after for icon buttons
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Confuse ↰ (tip left) with ↑ (&uarr;, plain up arrow)
  • Use U+021B0 or CSS \021B0—the correct value is U+21B0 and \21B0
  • Put CSS escape \21B0 in HTML text nodes
  • Rely on the symbol alone without context in accessibility-critical UIs
  • Assume all decorative fonts include extended Arrows glyphs

Key Takeaways

1

Named entity available: &lsh;

&#x21B0; &#8624;
2

For CSS stylesheets, use \21B0 in content

3

Unicode U+21B0 — UPWARDS ARROW WITH TIP LEFTWARDS

4

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

5

Four methods, one glyph — widely supported in modern browsers

❓ Frequently Asked Questions

Use &#x21B0; (hex), &#8624; (decimal), &lsh; (named entity), or \21B0 in CSS content. All produce ↰.
U+21B0 (UPWARDS ARROW WITH TIP LEFTWARDS). Arrows block (U+2190–U+21FF). Hex 21B0, decimal 8624.
In navigation elements, buttons, UI design, iconography, and any content needing upward movement with a leftward-pointing tip.
&lsh; is easier to read in source than &#8624; or &#x21B0;, but all produce ↰. The named entity is part of the HTML5 entity set for arrows.
The &lsh; entity is part of the HTML5 named entity set for common directional symbols. Many extended Arrows block characters only have numeric hex or decimal references.

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