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

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
U+2915Supplemental Arrows-B (U+2900–U+297F)
⤕Hexadecimal reference
⤕Decimal reference
—Use numeric codes only
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)Complete HTML Example
A simple example showing ⤕ using hexadecimal code, decimal HTML code, and a CSS content escape. There is no named HTML entity:
<!DOCTYPE html>
<html>
<head>
<style>
#point::after{
content: "\2915";
}
</style>
</head>
<body>
<p>Hex: ⤕</p>
<p>Decimal: ⤕</p>
<p id="point">CSS: </p>
</body>
</html>🌐 Browser Support
U+2915 renders in modern browsers when the font includes Supplemental Arrows-B glyphs:
👀 Live Preview
See the Right Arrow Tail Double Vertical Stroke (⤕) in common contexts:
🧠 How It Works
Hexadecimal Code
⤕ uses the Unicode hexadecimal value 2915. The x prefix indicates hexadecimal format.
Decimal HTML Code
⤕ uses the decimal Unicode value 10517 for the same character.
CSS Entity
\2915 is used in CSS stylesheets in the content property of pseudo-elements.
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:
Icon sets and UI elements with distinctive double-stroke tail arrows.
Menus, breadcrumbs, and wayfinding with a unique tail design.
Logos, layouts, and creative content needing visual variety.
Buttons, links, and interactive elements with distinctive direction cues.
Applications and interfaces that need specialized arrow symbols.
Pair ⤕ with plain language (e.g. “next” or “go to”) for screen readers.
💡 Best Practices
Do
- Use
⤕or⤕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
\2915for 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
\2915in HTML text nodes - Use padded CSS like
\02915—prefer\2915 - Assume all fonts render Supplemental Arrows-B glyphs correctly
Key Takeaways
Three ways to render U+2915 in HTML and CSS
⤕ ⤕For CSS, use \2915 in the content property
Unicode U+2915 — RIGHTWARDS ARROW WITH DOUBLE VERTICAL STROKE (⤕)
No named HTML entity—use numeric hex or decimal references
Previous: Right Arrow Tail (↣) Next: Right Arrow Tail Vertical Stroke (⤔)
❓ Frequently Asked Questions
⤕ (hex), ⤕ (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.⤕, ⤕) go in markup. The CSS escape \2915 is used in stylesheets, typically on ::before or ::after. Both render ⤕.⤕) or decimal (⤕) references instead.Explore More HTML Entities!
Discover 1500+ HTML character references — arrows, symbols, math operators, and more.
8 people found this page helpful
