HTML Entity for Right Two Headed Arrow Tail Vertical Stroke (⤗)

What You'll Learn
How to display the Right Two Headed Arrow Tail Vertical Stroke (⤗) in HTML using hexadecimal, decimal, and CSS escape methods. This symbol is U+2917 (RIGHTWARDS TWO HEADED ARROW WITH TAIL WITH VERTICAL STROKE) in the Supplemental Arrows-B block (U+2900–U+297F)—a two-headed arrow with a tail and single vertical stroke through the tail, used for bidirectional flow, mathematical notation, and diagram emphasis.
Use ⤗, ⤗, or CSS \2917. There is no named HTML entity. Do not confuse ⤗ with U+2916 (⤖, plain tail / ⤖), U+2918 (⤘, tail with double vertical stroke), or U+2900 (⤀, vertical stroke without tail).
⚡ Quick Reference — Right Two Headed Arrow Tail Vertical Stroke
U+2917Supplemental Arrows-B
⤗Hexadecimal reference
⤗Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+2917
Hex code ⤗
HTML code ⤗
Named entity (none)
CSS code \2917
Meaning Two headed tail arrow with vertical stroke
Related U+2916 = rightwards two headed arrow with tail (⤖ / ⤖)
U+2918 = tail with double vertical stroke (⤘)
U+2900 = vertical stroke without tail (⤀)Complete HTML Example
A simple example showing the Right Two Headed Arrow Tail Vertical Stroke (⤗) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2917";
}
</style>
</head>
<body>
<p>Symbol (hex): ⤗</p>
<p>Symbol (decimal): ⤗</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The Right Two Headed Arrow Tail Vertical Stroke (⤗) is universally supported in all modern browsers when the font includes Supplemental Arrows-B glyphs:
👀 Live Preview
See the Right Two Headed Arrow Tail Vertical Stroke (⤗) rendered live in different contexts:
🧠 How It Works
Hexadecimal Code
⤗ uses the Unicode hexadecimal value 2917 for the right two headed arrow with tail and vertical stroke. The x prefix indicates hexadecimal format.
Decimal HTML Code
⤗ uses the decimal Unicode value 10519 to display the same character.
CSS Entity
\2917 is used in CSS stylesheets in the content property of pseudo-elements like ::after.
Same visual result
All three methods produce ⤗. Unicode U+2917 is in the Supplemental Arrows-B block. There is no named HTML entity. Previous: Right Two Headed Arrow Tail Double Vertical Stroke (U+2918).
Use Cases
The Right Two Headed Arrow Tail Vertical Stroke (⤗) is commonly used in:
Show two-way relationships with a tail and single vertical stroke emphasis.
Use in equations and logical expressions requiring this tail arrow variant.
Indicate bidirectional flow with tail vertical stroke modifiers.
Include in architecture and system diagrams with specialized arrow notation.
Document workflows with two-headed tail transitions and vertical stroke markers.
Reference bidirectional API or system links in HTML technical docs.
💡 Best Practices
Do
- Use
⤗or⤗for HTML markup - Add
aria-labelor surrounding text for accessibility - Distinguish ⤗ from ⤖ (plain tail), ⤘ (double stroke), and ⤀ (no tail)
- Verify your font supports Supplemental Arrows-B (U+2917)
- Keep one entity style per project for consistency
Don’t
- Confuse ⤗ with ⤖, ⤘, or ⤀
- Assume a named HTML entity exists—there is none for U+2917
- Use CSS
\2917inside HTML text nodes - Rely on the arrow alone without context for screen readers
- Mix entity styles randomly in one file
- Assume all fonts render supplemental arrow glyphs identically
Key Takeaways
Two HTML references plus CSS all render ⤗
⤗ ⤗For CSS, use \2917 in the content property
Unicode U+2917 — RIGHTWARDS TWO HEADED ARROW WITH TAIL WITH VERTICAL STROKE
No named HTML entity—use numeric hex or decimal codes
❓ Frequently Asked Questions
⤗ (hex), ⤗ (decimal), or \2917 in CSS content. There is no named HTML entity. All three methods render ⤗ correctly.U+2917 (RIGHTWARDS TWO HEADED ARROW WITH TAIL WITH VERTICAL STROKE). Supplemental Arrows-B block (U+2900–U+297F). Hex 2917, decimal 10519.⤗ or ⤗) go in markup. The CSS escape \2917 is used in stylesheets, typically on ::before or ::after. Both produce ⤗.Explore More HTML Entities!
Discover 1500+ HTML character references — arrows, symbols, math operators, and more.
8 people found this page helpful
