HTML Entity for Left Arrow To Bar (⇤)

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

What You'll Learn

How to display the Left Arrow To Bar (⇤) in HTML using the named entity, hexadecimal, decimal, and CSS escape methods. This symbol is U+21E4 (LEFTWARDS ARROW TO BAR) in the Arrows block (U+2190–U+21FF)—a leftwards arrow to a vertical bar, commonly used for tab/indent notation, back-to-margin navigation, and UI controls.

Render it with ⇤ (named), ⇤, ⇤, or CSS \21E4. Related: U+21E5 (⇥, right arrow to bar / ⇥), U+2190 (←, simple left arrow / ←).

⚡ Quick Reference — Left Arrow To Bar

Unicode U+21E4

Arrows block

Hex Code ⇤

Hexadecimal reference

HTML Code ⇤

Decimal reference

Named Entity ⇤

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+21E4
Hex code       ⇤
HTML code      ⇤
Named entity   ⇤
CSS code       \21E4
Meaning        Leftwards arrow to bar (tab / back-to-margin)
Related        U+21E5 = right arrow to bar (⇥)
               U+2190 = left arrow (←)
1

Complete HTML Example

A simple example showing the Left Arrow To Bar (⇤) using the named entity, hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\21E4";
  }
 </style>
</head>
<body>
<p>Symbol using Hexadecimal: &#x21E4;</p>
<p>Symbol using HTML Code: &#8676;</p>
<p>Symbol using HTML Entity: &larrb;</p>
<p id="point">Symbol using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Left Arrow To Bar (⇤) renders in modern browsers when the font includes Arrows block glyphs:

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

👀 Live Preview

See the Left Arrow To Bar (⇤) in tab and navigation contexts:

Tab / indent ⇤ Tab
Back to margin ⇤ Back to start
Decrease indent ⇤ Outdent
Large glyph
Arrow comparison ⇤ ⇥ ← ↢
Entity refs &larrb; &#x21E4; &#8676; \21E4

🧠 How It Works

1

Named HTML Entity

&larrb; is the named entity for the Left Arrow To Bar (leftwards arrow to bar). It is easy to read in tab and navigation markup.

HTML markup
2

Hexadecimal Code

&#x21E4; uses the Unicode hexadecimal value 21E4. The x prefix indicates hexadecimal format.

HTML markup
3

Decimal HTML Code

&#8676; uses the decimal Unicode value 8676 for the same symbol.

HTML markup
4

CSS Entity

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

CSS stylesheet
=

Same visual result

All four methods produce . Unicode U+21E4 is in the Arrows block. Next: Left Arrow Vertical Stroke.

Use Cases

The Left Arrow To Bar (⇤) is commonly used in:

⌨ Tab / indent

Indicate tab key, back-tab, or indent/outdent in keyboard shortcuts and help.

🧭 Navigation

Back to start, home, or left margin in app headers and toolbars.

📄 Documentation

Document flow, shortcuts, or specification notation that uses this arrow.

📱 UI / editors

Text editor or form controls for decrease indent or move-to-start.

📊 Diagrams

Indicate left-to-margin or tab-style direction in process diagrams.

🗃 Tables

Move to first column or left edge in data tables and forms.

💡 Best Practices

Do

  • Prefer &larrb; in HTML for readability
  • Pair ⇤ with text (e.g., “Tab” or “Back to start”) or aria-label for accessibility
  • Use fonts that support the Arrows block (U+21E4)
  • Set <meta charset="utf-8">
  • Keep one encoding style per project for consistency
  • Distinguish ⇤ from ← when tab-to-bar meaning matters

Don’t

  • Confuse &larrb; (U+21E4) with &larr; (U+2190)
  • Confuse &larrb; with &rarrb; (U+21E5, right arrow to bar)
  • Use CSS \21E4 inside HTML text nodes
  • Rely on the symbol alone without context in critical UI
  • Mix named and numeric entities inconsistently in the same component

Key Takeaways

1

Four ways to render U+21E4 in web content

&larrb; &#x21E4; &#8676;
2

For CSS, use \21E4 in the content property

3

Unicode U+21E4 — LEFTWARDS ARROW TO BAR

4

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

❓ Frequently Asked Questions

Use &larrb; (named), &#x21E4; (hex), &#8676; (decimal), or \21E4 in CSS content. All four methods render ⇤ correctly.
U+21E4 (LEFTWARDS ARROW TO BAR). Arrows block (U+2190–U+21FF). Hex 21E4, decimal 8676. Often used for tab or back-to-margin notation.
For tab/indent notation, navigation and back-to-margin, keyboard shortcuts, technical documentation, and any UI that indicates left-arrow-to-bar or tab-style action.
Named and numeric HTML references (&larrb;, &#8676;, &#x21E4;) go in markup. The CSS escape \21E4 is used in stylesheets, typically on ::before or ::after. Both produce ⇤.
Yes. &larrb; is the named HTML entity for U+21E4. You can also use &#8676; (decimal), &#x21E4; (hex), or \21E4 in CSS.

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