HTML Entity for Right Arrow Tail Vertical Stroke (⤔)

What You'll Learn
How to display the Right Arrow Tail Vertical Stroke (⤔) in HTML using hexadecimal, decimal, and CSS escape methods. This symbol is U+2914 (RIGHTWARDS ARROW WITH VERTICAL STROKE) in the Supplemental Arrows-B block (U+2900–U+297F)—a rightward arrow with a vertical stroke on the tail, used for web design, directional indicators, interface elements, and distinctive navigation cues.
Render it with ⤔, ⤔, or CSS \2914. There is no named HTML entity. Related: U+2915 (⤕, double vertical stroke), U+2935 (⤵, tail with single vertical stroke). Do not confuse ⤔ with plain → or ⤕ (double stroke).
⚡ Quick Reference — Right Arrow Tail Vertical Stroke
U+2914Supplemental Arrows-B (U+2900–U+297F)
⤔Hexadecimal reference
⤔Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+2914
Hex code ⤔
HTML code ⤔
Named entity (none)
CSS code \2914
Meaning Rightwards arrow with vertical stroke
Related U+2915 = double vertical stroke (⤕)
U+2935 = tail with vertical stroke (⤵)
U+2947 = right arrow through X (⥇)
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: "\2914";
}
</style>
</head>
<body>
<p>Hex: ⤔</p>
<p>Decimal: ⤔</p>
<p id="point">CSS: </p>
</body>
</html>🌐 Browser Support
U+2914 renders in modern browsers when the font includes Supplemental Arrows-B glyphs:
👀 Live Preview
See the Right Arrow Tail Vertical Stroke (⤔) in common contexts:
🧠 How It Works
Hexadecimal Code
⤔ uses the Unicode hexadecimal value 2914. The x prefix indicates hexadecimal format.
Decimal HTML Code
⤔ uses the decimal Unicode value 10516 for the same character.
CSS Entity
\2914 is used in CSS stylesheets in the content property of pseudo-elements.
Same visual result
All three methods produce ⤔. Unicode U+2914 in the Supplemental Arrows-B block. No named entity—use numeric codes. Previous: Right Arrow Tail Double Vertical Stroke (⤕). Next: Right Arrow Through X (⥇).
Use Cases
The Right Arrow Tail Vertical Stroke (⤔) is commonly used in:
Layouts and interfaces with unique arrow symbols on the tail.
Navigation elements and wayfinding with distinctive tail strokes.
Buttons, links, and interactive UI with unique directional cues.
Menus, breadcrumbs, and menu items indicating direction.
Dashboards and applications needing 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 a single vertical stroke on the tail fits your design
- Set
<meta charset="utf-8"> - Keep hex or decimal style consistent across your project
- Use CSS
\2914for decorative arrows in pseudo-elements - Test rendering across browsers and font stacks
Don’t
- Confuse ⤔ (U+2914) with ⤕ (U+2915), ⤵ (U+2935), or plain →
- Use padded Unicode notation like U+02914—the correct value is
U+2914 - Use CSS escape
\2914in HTML text nodes - Use padded CSS like
\02914—prefer\2914 - Assume all fonts render Supplemental Arrows-B glyphs correctly
Key Takeaways
Three ways to render U+2914 in HTML and CSS
⤔ ⤔For CSS, use \2914 in the content property
Unicode U+2914 — RIGHTWARDS ARROW WITH VERTICAL STROKE (⤔)
No named HTML entity—use numeric hex or decimal references
Previous: Right Arrow Tail Double Vertical Stroke (⤕) Next: Right Arrow Through X (⥇)
❓ Frequently Asked Questions
⤔ (hex), ⤔ (decimal), or \2914 in CSS content. There is no named HTML entity. All three render ⤔.U+2914 (RIGHTWARDS ARROW WITH VERTICAL STROKE). Supplemental Arrows-B block (U+2900–U+297F). Hex 2914, decimal 10516.⤔, ⤔) go in markup. The CSS escape \2914 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
