HTML Entity for Right Arrow Tail Double Vertical Stroke (⤕)

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

What You'll Learn

How to display the Right Arrow Tail Double Vertical Stroke (⤕) in HTML using hexadecimal, decimal, and CSS escape methods. This symbol is U+2915 (RIGHTWARDS ARROW WITH DOUBLE VERTICAL STROKE) in the Supplemental Arrows-B block (U+2900–U+297F)—a rightward arrow with double vertical strokes on the tail, used for directional icons, navigation arrows, graphic design, and distinctive UI elements.

Render it with ⤕, ⤕, or CSS \2915. There is no named HTML entity. Related: U+21A3 (↣, right arrow tail / ↣), U+2914 (⤔, right arrow tail vertical stroke). Do not confuse ⤕ with ⇻ (U+21FB, Arrows block) or ⤵ (U+2935, tail with single vertical stroke).

⚡ Quick Reference — Right Arrow Tail Double Vertical Stroke

Unicode U+2915

Supplemental Arrows-B (U+2900–U+297F)

Hex Code ⤕

Hexadecimal reference

HTML Code ⤕

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2915
Hex code       ⤕
HTML code      ⤕
Named entity   (none)
CSS code       \2915
Meaning        Rightwards arrow with double vertical stroke
Related        U+21A3 = right arrow tail (↣, ↣)
               U+2914 = right arrow tail vertical stroke (⤔)
               U+2916 = right arrow triple vertical stroke (⤖)
Block          Supplemental Arrows-B (U+2900–U+297F)
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: "\2915";
  }
 </style>
</head>
<body>
<p>Hex: &#x2915;</p>
<p>Decimal: &#10517;</p>
<p id="point">CSS: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+2915 renders in modern browsers when the font includes Supplemental Arrows-B glyphs:

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

👀 Live Preview

See the Right Arrow Tail Double Vertical Stroke (⤕) in common contexts:

Navigation Home ⤕ Section ⤕ Page
Next step Continue ⤕
Large glyph
Arrow comparison ↣ ⤕ ⤔
Numeric refs &#x2915; &#10517; \2915

🧠 How It Works

1

Hexadecimal Code

&#x2915; uses the Unicode hexadecimal value 2915. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

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

CSS stylesheet
=

Same visual result

All three methods produce . Unicode U+2915 in the Supplemental Arrows-B block. No named entity—use numeric codes. Previous: Right Arrow Tail (↣). Next: Right Arrow Tail Vertical Stroke (⤔).

Use Cases

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

🧭 Directional icons

Icon sets and UI elements with distinctive double-stroke tail arrows.

🗺 Navigation arrows

Menus, breadcrumbs, and wayfinding with a unique tail design.

🎨 Graphic design

Logos, layouts, and creative content needing visual variety.

🛠 UI design

Buttons, links, and interactive elements with distinctive direction cues.

💻 Web development

Applications and interfaces that need specialized arrow symbols.

♿ Accessibility

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

💡 Best Practices

Do

  • Use &#x2915; or &#10517; in HTML (no named entity exists)
  • Use ⤕ when double vertical strokes on the tail fit your navigation or icon design
  • Set <meta charset="utf-8">
  • Keep hex or decimal style consistent across your project
  • Use CSS \2915 for decorative arrows in pseudo-elements
  • Test rendering across browsers and font stacks

Don’t

  • Confuse ⤕ (U+2915) with ⤔ (U+2914), ⤵ (U+2935), or ⇻ (U+21FB)
  • Use padded Unicode notation like U+02915—the correct value is U+2915
  • Use CSS escape \2915 in HTML text nodes
  • Use padded CSS like \02915—prefer \2915
  • Assume all fonts render Supplemental Arrows-B glyphs correctly

Key Takeaways

1

Three ways to render U+2915 in HTML and CSS

&#x2915; &#10517;
2

For CSS, use \2915 in the content property

3

Unicode U+2915 — RIGHTWARDS ARROW WITH DOUBLE VERTICAL STROKE (⤕)

4

No named HTML entity—use numeric hex or decimal references

❓ Frequently Asked Questions

Use &#x2915; (hex), &#10517; (decimal), or \2915 in CSS content. There is no named HTML entity. All three render ⤕.
U+2915 (RIGHTWARDS ARROW WITH DOUBLE VERTICAL STROKE). Supplemental Arrows-B block (U+2900–U+297F). Hex 2915, decimal 10517.
For directional icons, navigation arrows, graphic design, user interface elements, navigation menus, and content that needs a distinctive rightward arrow with double vertical strokes on the tail.
Numeric HTML references (&#10517;, &#x2915;) go in markup. The CSS escape \2915 is used in stylesheets, typically on ::before or ::after. Both render ⤕.
Named HTML entities cover common characters; specialized arrow symbols in Unicode blocks like Supplemental Arrows-B use numeric hex (&#x2915;) or decimal (&#10517;) 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