HTML Entity for Left Triple Dash Arrow (⤎)

What You'll Learn
How to display the Left Triple Dash Arrow (⤎) in HTML using the named entity, hexadecimal, decimal, and CSS escape methods. This symbol is U+290E (LEFTWARDS TRIPLE DASH ARROW) in the Supplemental Arrows-B block (U+2900–U+297F)—a dashed leftward triple arrow used in navigation UI, documentation, mathematical notation (weak or conditional implication), and flowcharts.
Render it with ⤎ (named), ⤎, ⤎, or CSS \290E. Pair with U+290F (⤏, right triple dash arrow / ⤏) for bidirectional notation. Do not confuse ⤎ with ⇚ (solid left triple arrow / ⇚).
⚡ Quick Reference — Left Triple Dash Arrow
U+290ESupplemental Arrows-B
⤎Hexadecimal reference
⤎Decimal reference
⤎Most readable option
Name Value
──────────── ──────────
Unicode U+290E
Hex code ⤎
HTML code ⤎
Named entity ⤎
CSS code \290E
Meaning Leftwards triple dash arrow
Related U+290F = right triple dash arrow (⤏ / ⤏)
U+21DA = left triple arrow (⇚ / ⇚)Complete HTML Example
A simple example showing the Left Triple Dash Arrow (⤎) using the named entity, hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\290E";
}
</style>
</head>
<body>
<p>Arrow (hex): ⤎</p>
<p>Arrow (decimal): ⤎</p>
<p>Arrow (named): ⤎</p>
<p id="point">Arrow (CSS): </p>
</body>
</html>🌐 Browser Support
The Left Triple Dash Arrow (⤎) renders in modern browsers when the font includes Supplemental Arrows-B glyphs:
👀 Live Preview
See the Left Triple Dash Arrow (⤎) rendered live in different contexts:
🧠 How It Works
Hexadecimal Code
⤎ uses the Unicode hexadecimal value 290E for the leftwards triple dash arrow. The x prefix indicates hexadecimal format.
Decimal HTML Code
⤎ uses the decimal Unicode value 10510 to display the same character.
Named Entity
⤎ is the semantic named entity — the easiest to read in source HTML for left triple dash arrow references.
CSS Entity
\290E is used in CSS stylesheets in the content property of pseudo-elements like ::after.
Same visual result
All four methods produce ⤎. Unicode U+290E is in the Supplemental Arrows-B block. Previous: Left Triple Arrow.
Use Cases
The Left Triple Dash Arrow (⤎) is commonly used in:
Indicate “back” or leftward navigation with a dashed style in menus and UI controls.
Show conditional implication, weak relations, or steps in tutorials and technical writing.
Represent weak or conditional leftward implication in equations and formal notation.
Display conditional or optional flow direction in process diagrams and flowcharts.
Use in custom buttons or pagination for “previous” or “back” with a dashed visual cue.
Use in dashboards and multi-step forms to indicate optional or conditional back steps.
💡 Best Practices
Do
- Prefer
⤎when writing HTML by hand for readability - Pair the symbol with text or
aria-label(e.g. “Go back”) for accessibility - Verify your font supports Supplemental Arrows-B (U+290E)
- Keep one entity style per project for consistency
- Use the dashed style to distinguish conditional or weak relations from solid arrows
Don’t
- Confuse ⤎ (dashed triple) with ⇚ (solid triple /
⇚) - Confuse ⤎ with ⤏ (right triple dash /
⤏) - Use CSS
\290Einside HTML text nodes - Use the symbol alone without explaining its conditional/back meaning
- Mix entity styles randomly in one file
Key Takeaways
Four methods all render ⤎
⤎ ⤎ ⤎For CSS, use \290E in the content property
Unicode U+290E — LEFTWARDS TRIPLE DASH ARROW
Named entity ⤎ is the most readable option
Previous: Left Triple Arrow Next: Left Two Headed Arrow
❓ Frequently Asked Questions
⤎ (named), ⤎ (hex), ⤎ (decimal), or \290E in CSS content. All four methods render ⤎ correctly.U+290E (LEFTWARDS TRIPLE DASH ARROW). Supplemental Arrows-B block (U+2900–U+297F). Hex 290E, decimal 10510. Used for conditional or weak leftward relations in mathematical and logical notation.⤎, ⤎, or ⤎) go in markup. The CSS escape \290E is used in stylesheets, typically on ::before or ::after. Both produce ⤎.⤎ is the named HTML entity for U+290E. You can also use ⤎ (decimal), ⤎ (hex), or \290E in CSS.Explore More HTML Entities!
Discover 1500+ HTML character references — arrows, symbols, math operators, and more.
8 people found this page helpful
