HTML Entity for Right Arrow Double Vertical Stroke (⇻)

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

What You'll Learn

How to display the Right Arrow Double Vertical Stroke (⇻) in HTML using hexadecimal, decimal, and CSS escape methods. This symbol is U+21FB (RIGHTWARDS ARROW WITH DOUBLE VERTICAL STROKE) in the Arrows block (U+2190–U+21FF)—a rightwards arrow with double vertical strokes, used in logic symbols, mathematical notation, navigation, and formal logic.

Render it with ⇻, ⇻, or CSS \21FB. There is no named HTML entity. Related: U+2192 (→, simple right arrow), U+21FA (⇺, left arrow double vertical stroke). Do not confuse ⇻ with plain →.

⚡ Quick Reference — Right Arrow Double Vertical Stroke

Unicode U+21FB

Arrows (U+2190–U+21FF)

Hex Code ⇻

Hexadecimal reference

HTML Code ⇻

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+21FB
Hex code       ⇻
HTML code      ⇻
Named entity   (none)
CSS code       \21FB
Meaning        Rightwards arrow with double vertical stroke
Related        U+2192 = right arrow (→)
               U+21FA = left arrow double vertical stroke (⇺)
               U+21AE = left right arrow with stroke (↮)
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: "\21FB";
  }
 </style>
</head>
<body>
<p>Hex: &#x21FB;</p>
<p>Decimal: &#8699;</p>
<p id="point">CSS: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

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

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

👀 Live Preview

Right Arrow Double Vertical Stroke (⇻) in logic and navigation contexts:

Logic notation A ⇻ B
Forward control Next ⇻
Large glyph
Arrow comparison → ⇻ ⇺
Numeric refs &#x21FB; &#8699; \21FB

🧠 How It Works

1

Hexadecimal Code

&#x21FB; uses the Unicode hexadecimal value 21FB to display the right arrow with double vertical stroke.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\21FB is used in CSS stylesheets in the content property of pseudo-elements for navigation and logic notation icons.

CSS stylesheet
=

Same visual result

All three methods produce . Unicode U+21FB in the Arrows block. Next: Right Arrow From Bar.

Use Cases

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

🔢 Logic symbols

Logical expressions, formal logic, and logical statements with specialized arrow notation.

📝 Math notation

Mathematical expressions, proofs, and academic documentation.

🎓 Academic papers

Research documents and scholarly articles requiring formal logical notation.

🗼 Navigation UI

Forward, fast-forward, or next controls in toolbars and media players.

📄 Technical writing

Specifications, algorithm descriptions, and formal documentation.

♿ Accessibility

Provide plain-language context alongside the symbol for screen readers.

💡 Best Practices

Do

  • Use &#x21FB; or &#8699; consistently in HTML markup
  • Pair ⇻ with text or aria-label in interactive UI
  • Use fonts that support the Arrows block (U+21FB)
  • Set <meta charset="utf-8">
  • Link to Left Arrow Double Vertical Stroke for the paired symbol
  • Keep one numeric style (hex or decimal) per project

Don’t

  • Expect a named HTML entity for U+21FB
  • Use padded Unicode notation like U+021FB—the correct value is U+21FB
  • Use CSS \21FB inside HTML text nodes
  • Confuse ⇻ with → (plain right arrow) or ⇺ (left double stroke)
  • Rely on the symbol alone without context in critical UI

Key Takeaways

1

Three ways to render U+21FB in HTML and CSS (no named entity)

&#x21FB; &#8699;
2

For CSS, use \21FB in the content property

3

Unicode U+21FB — RIGHTWARDS ARROW WITH DOUBLE VERTICAL STROKE (⇻)

4

Arrows block (U+2190–U+21FF) — distinct from plain →

❓ Frequently Asked Questions

Use &#x21FB; (hex), &#8699; (decimal), or \21FB in CSS content. There is no named entity. All three render ⇻ correctly.
U+21FB (RIGHTWARDS ARROW WITH DOUBLE VERTICAL STROKE). Arrows block (U+2190–U+21FF). Hex 21FB, decimal 8699.
No. ⇻ (U+21FB) is a rightwards arrow with double vertical strokes. → (U+2192) is a plain rightwards arrow. They are different Unicode characters.
For logic symbols, mathematical notation, academic documentation, forward or fast-forward UI controls, technical writing, and formal logic statements requiring a rightward arrow with double vertical strokes.
Named entities cover common characters; arrow symbols with modifiers like the double vertical stroke (U+21FB) in the Arrows block use numeric hex (&#x21FB;) or decimal (&#8699;) codes. That is standard for such symbols in HTML.

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