HTML Entity for Right Double Arrow Vertical Stroke (⤃)

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

What You'll Learn

How to display the Right Double Arrow Vertical Stroke (⤃) in HTML using the named entity, hexadecimal, decimal, and CSS escape methods. This symbol is U+2903 (RIGHTWARDS DOUBLE ARROW WITH VERTICAL STROKE) in the Supplemental Arrows-B block (U+2900–U+297F)—a right-pointing double arrow with a vertical stroke, used in navigation, UI elements, flow diagrams, and directional indicators.

Render it with ⤃ (named), ⤃, ⤃, or CSS \2903. Related: U+21CF (⇏, right double arrow with stroke / ⇏), U+2907 (⤇, right double arrow from bar).

⚡ Quick Reference — Right Double Arrow Vertical Stroke

Unicode U+2903

Supplemental Arrows-B

Hex Code ⤃

Hexadecimal reference

HTML Code ⤃

Decimal reference

Named Entity ⤃

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2903
Hex code       ⤃
HTML code      ⤃
Named entity   ⤃
CSS code       \2903
Meaning        Rightwards double arrow with vertical stroke
Related        U+21CF = right double arrow with stroke (⇏)
               U+2907 = right double arrow from bar (⤇)
1

Complete HTML Example

A simple example showing the Right Double Arrow Vertical Stroke (⤃) using the named entity, hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2903";
  }
 </style>
</head>
<body>
<p>Symbol using Hexadecimal: &#x2903;</p>
<p>Symbol using HTML Code: &#10499;</p>
<p>Symbol using HTML Entity: &nvrArr;</p>
<p id="point">Symbol using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Right Double Arrow Vertical Stroke (⤃) renders in modern browsers when the font includes Supplemental Arrows-B glyphs:

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

👀 Live Preview

See the Right Double Arrow Vertical Stroke (⤃) in navigation and diagram contexts:

Next link Next ⤃
Flow step Step 1 ⤃ Step 2
Vertical stroke Start ⤃ |
Large glyph
Arrow comparison ⤃ ⇏ ⤇ ⇒
Entity refs &nvrArr; &#x2903; &#10499; \2903

🧠 How It Works

1

Named HTML Entity

&nvrArr; is the named entity for the Right Double Arrow Vertical Stroke (rightwards double arrow with vertical stroke). Easy to read in navigation and UI markup.

HTML markup
2

Hexadecimal Code

&#x2903; uses the Unicode hexadecimal value 2903. The x prefix indicates hexadecimal format.

HTML markup
3

Decimal HTML Code

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

HTML markup
4

CSS Entity

\2903 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+2903 is in Supplemental Arrows-B. Previous: Right Double Arrow Tail (⤜). Next: Right Double Arrow With Rounded Head.

Use Cases

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

🧭 Navigation

Indicate “next” or “forward” with a distinct vertical-stroke double arrow in menus and UI.

📊 Flow diagrams

Show direction or flow where a double-arrow-with-vertical-stroke variant is desired.

📚 Tutorials

Point to the next step or “continue” in guides and wizards.

🎯 UI buttons

Decorative or functional right double arrow with vertical stroke in buttons, labels, and icons.

⌨ Shortcuts

Document “next” or “right” in shortcut hints with a vertical-stroke arrow.

🖼 Carousels

Next slide or next item controls in carousels and galleries.

💡 Best Practices

Do

  • Prefer &nvrArr; in HTML for readability
  • Pair ⤃ with text (“Next”, “Continue”) or aria-label for accessibility
  • Use fonts that support Supplemental Arrows-B (U+2903)
  • Set <meta charset="utf-8">
  • Keep one encoding style per project for consistency
  • Distinguish ⤃ from ⇏ when vertical vs horizontal stroke matters

Don’t

  • Confuse &nvrArr; (U+2903) with &nrArr; (U+21CF, horizontal stroke)
  • Confuse &nvrArr; with &rArr; (U+21D2, plain right double arrow)
  • Use CSS \2903 inside HTML text nodes
  • Assume legacy systems render Supplemental Arrows-B without testing
  • Mix named and numeric entities inconsistently in the same component

Key Takeaways

1

Four ways to render U+2903 in HTML and CSS

&nvrArr; &#x2903; &#10499;
2

For CSS, use \2903 in the content property

3

Unicode U+2903 — RIGHTWARDS DOUBLE ARROW WITH VERTICAL STROKE

4

Supplemental Arrows-B block (U+2900–U+297F) — named entity &nvrArr;

❓ Frequently Asked Questions

Use &nvrArr; (named), &#x2903; (hex), &#10499; (decimal), or \2903 in CSS content. All four methods render ⤃ correctly.
U+2903 (RIGHTWARDS DOUBLE ARROW WITH VERTICAL STROKE). Supplemental Arrows-B block (U+2900–U+297F). Hex 2903, decimal 10499. A right-pointing double arrow with a vertical stroke.
In navigation UI, flow diagrams, next or forward links, directional indicators, and any design that needs a right-pointing double arrow with vertical stroke.
Named and numeric HTML references (&nvrArr;, &#10499;, &#x2903;) go in markup. The CSS escape \2903 is used in stylesheets, typically on ::before or ::after. Both produce ⤃.
Yes. &nvrArr; is the named HTML entity for U+2903. You can also use &#10499; (decimal) or &#x2903; (hex) and \2903 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