HTML Entity for Long Right Squiggle Arrow (⟿)

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

What You'll Learn

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

Render it with ⟿, ⟿, ⟿, or CSS escape \27FF. It has a wave-like (squiggle) shape and is used for non-linear rightward direction, creative design, and distinctive flow in diagrams. For the shorter Arrows-block squiggle, see Left Squiggle Arrow (⇜) as a related squiggle-style reference.

⚡ Quick Reference — Long Right Squiggle Arrow

Unicode U+27FF

Supplemental Arrows-C

Hex Code ⟿

Hexadecimal reference

HTML Code ⟿

Decimal reference

Named Entity ⟿

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+27FF
Hex code       ⟿
HTML code      ⟿
Named entity   ⟿
CSS code       \27FF
Meaning        Long rightwards squiggle arrow
Related        U+27F6 = ⟶ (long right arrow)
Block          Supplemental Arrows-C
1

Complete HTML Example

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

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

🌐 Browser Support

The Long Right Squiggle 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 Squiggle Arrow (⟿) in diagram and UI contexts:

Large glyph
FlowStart ⟿ Next step
Creative UIExplore ⟿ Discover
Compare⟿ (long squiggle) vs ⟶ (long straight)
Numeric refs&#x27FF; &#10239; &dzigrarr; \27FF

🧠 How It Works

1

Hexadecimal Code

&#x27FF; uses the Unicode hexadecimal value 27FF to display the long squiggle arrow.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

Named Entity

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

HTML markup
4

CSS Entity

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

Use Cases

The Long Right Squiggle Arrow (⟿) is commonly used in:

🎨 Creative UI

Distinctive rightward flow with a wave-like squiggle path.

📊 Flowcharts

Non-linear or approximate rightward direction in diagrams.

📄 Technical docs

Indicate approximate mapping or indirect rightward relation.

🌐 Navigation

Playful or stylized “next” indicator with squiggle styling.

📐 Math & notation

Long squiggle arrow variant in specialized notation.

📚 Education

Explain squiggle or wavy arrow variants in tutorials.

💡 Best Practices

Do

  • Use &dzigrarr; for readable source markup
  • Clarify when the squiggle denotes approximate or non-linear flow
  • Choose ⟿ when you need a longer squiggle stroke than Arrows-block variants
  • Pair arrows with text labels for accessibility
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Confuse ⟿ with ⟶ (Long Right Arrow) or ⟹ (Long Right Double Arrow)
  • Put CSS escape \27FF in HTML text nodes
  • Rely on the squiggle glyph alone for screen reader users
  • Assume every font renders supplemental squiggle arrows identically—test on mobile
  • Use squiggle and straight arrows interchangeably when precision matters

Key Takeaways

1

Four HTML/CSS references all render ⟿

&#x27FF; &#10239; &dzigrarr;
2

For CSS stylesheets, use the escape in the content property

\27FF
3

Unicode U+27FF — LONG RIGHTWARDS SQUIGGLE ARROW

4

Prefer &dzigrarr; for readability in HTML source

❓ Frequently Asked Questions

Use &#x27FF; (hex), &#10239; (decimal), &dzigrarr; (named), or \27FF in CSS content. All produce ⟿.
U+27FF (LONG RIGHTWARDS SQUIGGLE ARROW). Supplemental Arrows-C block. Hex 27FF, decimal 10239. Named entity: &dzigrarr;.
For wave-like or approximate rightward direction, creative UI and design, flowcharts showing non-linear flow, and any content that needs a distinctive right-pointing squiggle arrow.
&dzigrarr; is the named HTML entity for ⟿. It is part of the HTML5 named character set and the most readable option in source markup.
⟶ (&xrarr;) is the long straight rightwards arrow. ⟹ (&xrArr;) is the long rightwards double arrow. ⟿ (&dzigrarr;) is the long rightwards squiggle arrow with a wave-like path.

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