HTML Entity for Long Left Double Arrow (⟸)

What You'll Learn
How to display the Long Left Double Arrow (⟸) symbol in HTML using hexadecimal, decimal, named entity, and CSS escape methods. This character is U+27F8 (LONG LEFTWARDS DOUBLE ARROW) in the Supplemental Arrows-C block.
Render it with ⟸, ⟸, ⟸, or CSS escape \27F8. It is used in math notation, reverse implication, flow diagrams, and technical content. For the standard short double arrow, see Left Double Arrow (⇐, ⇐).
⚡ Quick Reference — Long Left Double Arrow
U+27F8Supplemental Arrows-C
⟸Hexadecimal reference
⟸Decimal reference
⟸Most readable option
Name Value
──────────── ──────────
Unicode U+27F8
Hex code ⟸
HTML code ⟸
Named entity ⟸
CSS code \27F8
Meaning Long leftwards double arrow
Related U+21D0 = ⇐ (⇐)
Block Supplemental Arrows-CComplete HTML Example
A simple example showing the Long Left Double Arrow (⟸) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\27F8";
}
</style>
</head>
<body>
<p>Symbol (hex): ⟸</p>
<p>Symbol (decimal): ⟸</p>
<p>Symbol (named): ⟸</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The Long Left Double Arrow (⟸) is supported in modern browsers when the font includes Supplemental Arrows glyphs:
👀 Live Preview
See the Long Left Double Arrow (⟸) in logic and diagram contexts:
🧠 How It Works
Hexadecimal Code
⟸ uses the Unicode hexadecimal value 27F8 to display the long double arrow.
Decimal HTML Code
⟸ uses the decimal Unicode value 10232 to display the same character.
Named Entity
⟸ is the semantic named entity for ⟸—readable in source HTML and part of the HTML5 character set.
CSS Entity
\27F8 is used in CSS stylesheets, particularly in the content property of pseudo-elements.
Same visual result
All four methods produce the glyph: ⟸. Unicode U+27F8 is in Supplemental Arrows-C. Previous: Long Left Arrow Bar.
Use Cases
The Long Left Double Arrow (⟸) is commonly used in:
Reverse implication, “only if,” or leftward double-line relations.
Strong leftward flow or bidirectional relations in process diagrams.
Indicate “implies from” or reverse implication in specs and API docs.
Represent reverse implication or “only if” in formal logic.
Prominent “back” or “previous” indicator with double-arrow styling.
Explain logical equivalence, implications, or relations in tutorials.
💡 Best Practices
Do
- Use
⟸for readable source markup - Clarify in logic that ⟸ often means “only if” or reverse implication
- Choose ⟸ when you need a longer double stroke than ⇐
- Pair arrows with text labels for accessibility
- Serve pages with UTF-8 (
<meta charset="utf-8">)
Don’t
- Confuse
⟸(⟸) with⇐(⇐) or⤂(⤂) - Put CSS escape
\27F8in HTML text nodes - Rely on the arrow glyph alone for screen reader users
- Assume every font renders long double arrows identically—test on mobile
- Use ⟸ and ⇐ interchangeably when precision matters
Key Takeaways
Four HTML/CSS references all render ⟸
⟸ ⟸ ⟸For CSS stylesheets, use the escape in the content property
\27F8Unicode U+27F8 — LONG LEFTWARDS DOUBLE ARROW
Prefer ⟸ for readability; short double arrow is ⇐
Previous: Long Left Arrow Bar Next: Long Left Double Arrow Bar
❓ Frequently Asked Questions
⟸ (hex), ⟸ (decimal), ⟸ (named), or \27F8 in CSS content. All produce ⟸.U+27F8 (LONG LEFTWARDS DOUBLE ARROW). Supplemental Arrows-C block. Hex 27F8, decimal 10232. Named entity: ⟸.⟸ is the named HTML entity for ⟸. It is part of the HTML5 named character set and the most readable option in source markup.⇐) is the standard leftwards double arrow. ⤂ (⤂) is a leftwards double arrow with vertical stroke. ⟸ (⟸) is the long leftwards double arrow with a longer horizontal stroke.Explore More HTML Entities!
Discover 1500+ HTML character references — arrows, symbols, and more.
8 people found this page helpful
