HTML Entity for Long Right Double Arrow (⟹)

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

What You'll Learn

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

Render it with ⟹, ⟹, ⟹, or CSS escape \27F9. It is used for implication (“implies”) in logic and math, and for strong rightward relations in technical content. For the long left counterpart, see Long Left Double Arrow (⟸, ⟸).

⚡ Quick Reference — Long Right Double Arrow

Unicode U+27F9

Supplemental Arrows-C

Hex Code ⟹

Hexadecimal reference

HTML Code ⟹

Decimal reference

Named Entity ⟹

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+27F9
Hex code       ⟹
HTML code      ⟹
Named entity   ⟹
CSS code       \27F9
Meaning        Long rightwards double arrow
Related        U+27F8 = ⟸ (⟸)
Block          Supplemental Arrows-C
1

Complete HTML Example

A simple example showing the Long 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: "\27F9";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x27F9;</p>
<p>Symbol (decimal): &#10233;</p>
<p>Symbol (named): &xrArr;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Long 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 Right Double Arrow (⟹) in logic and diagram contexts:

Large glyph
LogicP ⟹ Q (implies)
NavigationNext ⟹
Compare⟹ (long double) vs ⟶ (long single)
Numeric refs&#x27F9; &#10233; &xrArr; \27F9

🧠 How It Works

1

Hexadecimal Code

&#x27F9; uses the Unicode hexadecimal value 27F9 to display the long double arrow.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

Named Entity

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

HTML markup
4

CSS Entity

\27F9 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+27F9 is in Supplemental Arrows-C. Previous: Long Right Arrow From Bar.

Use Cases

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

🔬 Logic & math

Implication (“implies”) and logical consequence in notation.

📊 Flowcharts

Strong rightward flow or consequence in process diagrams.

📄 Technical docs

Indicate “implies” or “leads to” in specs and API docs.

🌐 Navigation

Prominent “next” or forward indicator with double-arrow styling.

💻 UI elements

Strong forward direction in toggles, wizards, or step flows.

📚 Education

Explain implication, consequence, or relations in tutorials.

💡 Best Practices

Do

  • Use &xrArr; for readable source markup
  • Clarify in logic that ⟹ often means “implies” or consequence
  • 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 &xrArr; (⟹) with &xlArr; (⟸) or &xrarr; (⟶)
  • Put CSS escape \27F9 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 ⟹

&#x27F9; &#10233; &xrArr;
2

For CSS stylesheets, use the escape in the content property

\27F9
3

Unicode U+27F9 — LONG RIGHTWARDS DOUBLE ARROW

4

Prefer &xrArr; for readability; long left double is &xlArr;

❓ Frequently Asked Questions

Use &#x27F9; (hex), &#10233; (decimal), &xrArr; (named), or \27F9 in CSS content. All produce ⟹.
U+27F9 (LONG RIGHTWARDS DOUBLE ARROW). Supplemental Arrows-C block. Hex 27F9, decimal 10233. Named entity: &xrArr;.
For mathematical implication, logical implication, flowcharts, technical documentation, and UI elements that need a strong right-pointing double arrow.
&xrArr; is the named HTML entity for ⟹. It is part of the HTML5 named character set and the most readable option in source markup.
⇒ (&rArr;) is the standard rightwards double arrow. ⟸ (&xlArr;) is the long leftwards double arrow. ⟹ (&xrArr;) is the long rightwards double arrow with a longer horizontal 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