HTML Entity for Right Arrow Vertical Stroke (⇸)

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

What You'll Learn

How to display the Right Arrow Vertical Stroke (⇸) in HTML using hexadecimal, decimal, and CSS escape methods. This symbol is U+21F8 (RIGHTWARDS ARROW WITH VERTICAL STROKE) in the Arrows block (U+2190–U+21FF)—a rightward arrow with a vertical stroke, used for directional navigation, UI design, graphical layouts, and distinctive navigation cues.

Render it with ⇸, ⇸, or CSS \21F8. There is no named HTML entity. Related: U+21F7 (⇷, left arrow vertical stroke), U+219B (↛, right arrow stroke / ↛). Do not confuse ⇸ with plain → or ⤔ (Supplemental Arrows-B).

⚡ Quick Reference — Right Arrow Vertical Stroke

Unicode U+21F8

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

Hex Code ⇸

Hexadecimal reference

HTML Code ⇸

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+21F8
Hex code       ⇸
HTML code      ⇸
Named entity   (none)
CSS code       \21F8
Meaning        Rightwards arrow with vertical stroke
Related        U+21F7 = left arrow vertical stroke (⇷)
               U+219B = right arrow stroke (↛, ↛)
               U+27F4 = right arrow with circled plus (⟴)
Block          Arrows (U+2190–U+21FF)
1

Complete HTML Example

A simple example showing ⇸ using hexadecimal code, decimal HTML code, and a CSS content escape. There is no named HTML entity:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\21F8";
  }
 </style>
</head>
<body>
<p>Hex: &#x21F8;</p>
<p>Decimal: &#8696;</p>
<p id="point">CSS: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+21F8 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 Vertical Stroke (⇸) in common contexts:

Navigation Home ⇸ Section ⇸ Page
Next step Continue ⇸
Large glyph
Arrow comparison ⇷ ⇸ →
Numeric refs &#x21F8; &#8696; \21F8

🧠 How It Works

1

Hexadecimal Code

&#x21F8; uses the Unicode hexadecimal value 21F8. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#8696; uses the decimal Unicode value 8696 for the same character.

HTML markup
3

CSS Entity

\21F8 is used in CSS stylesheets in the content property of pseudo-elements.

CSS stylesheet
=

Same visual result

All three methods produce . Unicode U+21F8 in the Arrows block. No named entity—use numeric codes. Previous: Right Arrow To Bar (⇥). Next: Right Arrow With Circled Plus (⟴).

Use Cases

The Right Arrow Vertical Stroke (⇸) is commonly used in:

🗺 Directional navigation

Menus, breadcrumbs, and wayfinding with a distinctive vertical-stroke arrow.

🛠 UI design

Buttons, links, and interactive elements with unique directional indicators.

🎨 Graphical layouts

Designs and visual content needing specialized arrow imagery.

💻 Navigation menus

Menu bars and interface elements with directional cues.

🛠 UI elements

Web applications and components requiring distinctive arrow symbols.

♿ Accessibility

Pair ⇸ with plain language (e.g. “next” or “go to”) for screen readers.

💡 Best Practices

Do

  • Use &#x21F8; or &#8696; in HTML (no named entity exists)
  • Use ⇸ when a vertical-stroke arrow fits your navigation or UI design
  • Set <meta charset="utf-8">
  • Keep hex or decimal style consistent across your project
  • Use CSS \21F8 for decorative arrows in pseudo-elements
  • Test rendering across browsers and font stacks

Don’t

  • Confuse ⇸ (U+21F8) with ⇷ (U+21F7), ⤔ (U+2914), or plain →
  • Use padded Unicode notation like U+021F8—the correct value is U+21F8
  • Use CSS escape \21F8 in HTML text nodes
  • Use padded CSS like \021F8—prefer \21F8
  • Assume all fonts render Arrows block glyphs correctly

Key Takeaways

1

Three ways to render U+21F8 in HTML and CSS

&#x21F8; &#8696;
2

For CSS, use \21F8 in the content property

3

Unicode U+21F8 — RIGHTWARDS ARROW WITH VERTICAL STROKE (⇸)

4

No named HTML entity—use numeric hex or decimal references

❓ Frequently Asked Questions

Use &#x21F8; (hex), &#8696; (decimal), or \21F8 in CSS content. There is no named HTML entity. All three render ⇸.
U+21F8 (RIGHTWARDS ARROW WITH VERTICAL STROKE). Arrows block (U+2190–U+21FF). Hex 21F8, decimal 8696.
For directional navigation, user interface design, graphical layouts, navigation menus, UI elements, and content that needs a distinctive rightward arrow with a vertical stroke.
Numeric HTML references (&#8696;, &#x21F8;) go in markup. The CSS escape \21F8 is used in stylesheets, typically on ::before or ::after. Both render ⇸.
Named HTML entities cover common characters; specialized arrow symbols in the Arrows block use numeric hex (&#x21F8;) or decimal (&#8696;) references instead.

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