HTML Entity for Long Left Right Double Arrow (⟺)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+27FA

What You'll Learn

How to display the Long Left Right Double Arrow (⟺) symbol in HTML using hexadecimal, decimal, named entity, and CSS escape methods. This character is U+27FA (LONG LEFT RIGHT DOUBLE ARROW) in the Supplemental Arrows-C block.

Render it with ⟺, ⟺, ⟺, or CSS escape \27FA. It indicates strong bidirectional equivalence or “if and only if” in math, logic, navigation, and UI. For the standard short double arrow, see Left Right Double Arrow (⇔, ⇔).

⚡ Quick Reference — Long Left Right Double Arrow

Unicode U+27FA

Supplemental Arrows-C

Hex Code ⟺

Hexadecimal reference

HTML Code ⟺

Decimal reference

Named Entity ⟺

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+27FA
Hex code       ⟺
HTML code      ⟺
Named entity   ⟺
CSS code       \27FA
Meaning        Long left right double arrow
Related        U+21D4 = ⇔ (⇔)
Block          Supplemental Arrows-C
1

Complete HTML Example

A simple example showing the Long Left Right Double Arrow (⟺) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\27FA";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x27FA;</p>
<p>Symbol (decimal): &#10234;</p>
<p>Symbol (named): &xhArr;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Long Left Right Double Arrow (⟺) is supported in modern browsers when the font includes Supplemental Arrows glyphs:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the Long Left Right Double Arrow (⟺) in logic and diagram contexts:

Large glyph
EquivalenceA ⟺ B (if and only if)
BidirectionalMode A ⟺ Mode B
Compare⟺ (long double) vs ⇔ (short double)
Numeric refs&#x27FA; &#10234; &xhArr; \27FA

🧠 How It Works

1

Hexadecimal Code

&#x27FA; uses the Unicode hexadecimal value 27FA to display the long bidirectional double arrow.

HTML markup
2

Decimal HTML Code

&#10234; uses the decimal Unicode value 10234 to display the same character.

HTML markup
3

Named Entity

&xhArr; is the semantic named entity for ⟺—readable in source HTML and part of the HTML5 character set.

HTML markup
4

CSS Entity

\27FA is used in CSS stylesheets, particularly in the content property of pseudo-elements.

CSS stylesheet
=

Same visual result

All four methods produce the glyph: . Unicode U+27FA is in Supplemental Arrows-C. Previous: Long Left Right Arrow.

Use Cases

The Long Left Right Double Arrow (⟺) is commonly used in:

🔬 Logic & math

Bidirectional equivalence, “if and only if,” or strong two-way relations.

🧭 Bidirectional nav

Two-way navigation, toggle between modes, or reversible views.

📊 Flowcharts

Two-way relations or reversible process in process diagrams.

💻 UI elements

Expand/collapse, resize handles, or strong left-right toggle controls.

📄 Technical docs

Bidirectional API relation or equivalence in specs and documentation.

📚 Education

Explain bijection, equivalence, or two-way mapping in tutorials.

💡 Best Practices

Do

  • Use &xhArr; for readable source markup
  • Clarify in logic that ⟺ often means “if and only if” or equivalence
  • 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 &xhArr; (⟺) with &hArr; (⇔) or &xharr; (⟷)
  • Put CSS escape \27FA in 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

1

Four HTML/CSS references all render ⟺

&#x27FA; &#10234; &xhArr;
2

For CSS stylesheets, use the escape in the content property

\27FA
3

Unicode U+27FA — LONG LEFT RIGHT DOUBLE ARROW

4

Prefer &xhArr; for readability; short double arrow is &hArr;

❓ Frequently Asked Questions

Use &#x27FA; (hex), &#10234; (decimal), &xhArr; (named), or \27FA in CSS content. All produce ⟺.
U+27FA (LONG LEFT RIGHT DOUBLE ARROW). Supplemental Arrows-C block. Hex 27FA, decimal 10234. Named entity: &xhArr;.
For bidirectional equivalence in math and logic, “if and only if” notation, two-way relations in flowcharts, UI toggles, and any content showing strong left-right equivalence.
&xhArr; is the named HTML entity for ⟺. It is part of the HTML5 named character set and the most readable option in source markup.
⇔ (&hArr;) is the standard left right double arrow. ⟷ (&xharr;) is the long left right arrow. ⟺ (&xhArr;) is the long left right double arrow with a longer horizontal double stroke.

Explore More HTML Entities!

Discover 1500+ HTML character references — arrows, symbols, and more.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful