HTML Entity for Right Arrow To Bar (⇥)

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

What You'll Learn

How to display the Right Arrow To Bar (⇥) in HTML using the named entity, hexadecimal, decimal, and CSS escape methods. This symbol is U+21E5 (RIGHTWARDS ARROW TO BAR) in the Arrows block (U+2190–U+21FF)—a rightwards arrow to a vertical bar, commonly used for tab key notation, navigation toward a bar, and UI controls.

Render it with ⇥ (named), ⇥, ⇥, or CSS \21E5. Related: U+21E4 (⇤, left arrow to bar / ⇤), U+2192 (→, simple right arrow / →). Do not confuse ⇥ with the tab character itself.

⚡ Quick Reference — Right Arrow To Bar

Unicode U+21E5

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

Hex Code ⇥

Hexadecimal reference

HTML Code ⇥

Decimal reference

Named Entity ⇥

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+21E5
Hex code       ⇥
HTML code      ⇥
Named entity   ⇥
CSS code       \21E5
Meaning        Rightwards arrow to bar (tab / forward-to-bar)
Related        U+21E4 = left arrow to bar (⇤, ⇤)
               U+2192 = right arrow (→, →)
Block          Arrows (U+2190–U+21FF)
1

Complete HTML Example

A simple example showing ⇥ using the named entity, hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\21E5";
  }
 </style>
</head>
<body>
<p>Hex: &#x21E5;</p>
<p>Decimal: &#8677;</p>
<p>Named: &rarrb;</p>
<p id="point">CSS: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+21E5 renders in modern browsers when the font includes Arrows block glyphs:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the Right Arrow To Bar (⇥) in tab and navigation contexts:

Tab key Tab ⇥
Forward to bar Next field ⇥
Increase indent Indent ⇥
Large glyph
Arrow comparison ⇤ ⇥ → →
Entity refs &rarrb; &#x21E5; &#8677; \21E5

🧠 How It Works

1

Named HTML Entity

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

HTML markup
2

Hexadecimal Code

&#x21E5; uses the Unicode hexadecimal value 21E5. The x prefix indicates hexadecimal format.

HTML markup
3

Decimal HTML Code

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

HTML markup
4

CSS Entity

\21E5 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+21E5 in the Arrows block. Previous: Right Arrow Through X (⥇). Next: Right Arrow Vertical Stroke (⇸).

Use Cases

The Right Arrow To Bar (⇥) is commonly used in:

⌨ Tab indicators

Tab key notation, forward-tab, and indent controls in keyboard help.

🧭 Navigation menus

Menus and breadcrumbs indicating direction toward a bar or tab element.

🛠 UI design

Buttons, links, and interactive elements with bar-termination arrows.

⌨ Keyboard shortcuts

Shortcut documentation and help menus showing tab or navigation keys.

💻 Web development

Applications and tabbed interfaces needing bar navigation indicators.

♿ Accessibility

Pair ⇥ with plain language (e.g. “tab” or “next field”) for screen readers.

💡 Best Practices

Do

  • Prefer &rarrb; for readable tab and navigation markup
  • Use &#x21E5; or &#8677; when named entities are unavailable
  • Set <meta charset="utf-8">
  • Keep entity style consistent across your project
  • Use CSS \21E5 for decorative arrows in pseudo-elements
  • Test rendering across browsers and font stacks

Don’t

  • Confuse ⇥ (U+21E5) with ⇤ (U+21E4) or plain →
  • Use padded Unicode notation like U+021E5—the correct value is U+21E5
  • Use CSS escape \21E5 in HTML text nodes
  • Use padded CSS like \021E5—prefer \21E5
  • Substitute the actual tab character when the visible arrow symbol ⇥ is intended

Key Takeaways

1

Four ways to render U+21E5 in HTML and CSS

&rarrb; &#x21E5;
2

For CSS, use \21E5 in the content property

3

Unicode U+21E5 — RIGHTWARDS ARROW TO BAR (⇥)

4

Named entity &rarrb; is the most readable option

❓ Frequently Asked Questions

Use &rarrb; (named), &#x21E5; (hex), &#8677; (decimal), or \21E5 in CSS content. All four render ⇥.
U+21E5 (RIGHTWARDS ARROW TO BAR). Arrows block (U+2190–U+21FF). Hex 21E5, decimal 8677.
For navigation menus, tab indicators, keyboard shortcuts, UI design, interactive elements, and content that needs direction toward a bar or tab element.
&rarrb; is more readable and easier to remember. Numeric codes (&#8677;, &#x21E5;) work everywhere. Both render ⇥.
HTML references (&rarrb;, &#8677;, &#x21E5;) go in markup. The CSS escape \21E5 is used in stylesheets on ::before or ::after. Both render ⇥.

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