HTML Entity for Right Squiggle Arrow (⇝)

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

What You'll Learn

How to display the Right Squiggle Arrow (⇝) in HTML using the named entity, hexadecimal, decimal, and CSS escape methods. This symbol is U+21DD (RIGHTWARDS SQUIGGLE ARROW) in the Arrows block (U+2190–U+21FF)—a right-pointing arrow with a squiggly (wavy) line, often used in diagrams, flowcharts, and technical notation.

Render it with ⇝ (named), ⇝, ⇝, or CSS \21DD. Do not confuse ⇝ with U+2192 (→, simple rightwards arrow / →) or U+21DC (⇜, leftwards squiggle arrow).

⚡ Quick Reference — Right Squiggle Arrow

Unicode U+21DD

Arrows block

Hex Code ⇝

Hexadecimal reference

HTML Code ⇝

Decimal reference

Named Entity ⇝

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+21DD
Hex code       ⇝
HTML code      ⇝
Named entity   ⇝
CSS code       \21DD
Meaning        Rightwards squiggle arrow
Related        U+2192 = rightwards arrow (→)
               U+21DC = leftwards squiggle arrow (⇜)
1

Complete HTML Example

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

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\21DD";
  }
 </style>
</head>
<body>
<p>Arrow (hex): &#x21dd;</p>
<p>Arrow (decimal): &#8669;</p>
<p>Arrow (named): &zigrarr;</p>
<p id="point">Arrow (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Right Squiggle Arrow (⇝) is universally supported in all modern browsers when the font includes Arrows block glyphs:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See the Right Squiggle Arrow (⇝) rendered live in different contexts:

Inline text Proceed to the next step with a squiggle path ⇝
Large glyph
Flow diagram Step A ⇝ Step B (wavy rightward flow)
Navigation Next ⇝
Arrow comparison → ⇜ ⇝
Numeric refs &zigrarr; &#x21DD; &#8669; \21DD

🧠 How It Works

1

Hexadecimal Code

&#x21DD; uses the Unicode hexadecimal value 21DD for the rightwards squiggle arrow. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

Named Entity

&zigrarr; is the semantic named entity — the easiest to read in source HTML and part of the HTML5 character set.

HTML markup
4

CSS Entity

\21DD is used in CSS stylesheets in the content property of pseudo-elements like ::after.

CSS stylesheet
=

Same visual result

All four methods produce . Unicode U+21DD is in the Arrows block. Previous: Right Square Bracket With Quill.

Use Cases

The Right Squiggle Arrow (⇝) is commonly used in:

📊 Diagrams & Flowcharts

Indicate rightward flow or direction with a distinct squiggle (non-straight) path.

📄 Technical Documentation

Show approximation, “leads to” with variation, or non-direct relation.

📐 Notation & Math

Represent rightward relation or mapping with a squiggle arrow variant.

💻 UI & Icons

Display “next” or “forward” with a distinct squiggle arrow style.

📚 Academic & Research

Use in papers for right-pointing squiggle arrow in formal notation.

🚀 Navigation

Indicate “go right” or forward direction with a wavy/squiggle arrow.

💡 Best Practices

Do

  • Use &zigrarr; for readable source markup
  • Use &#x21DD; or &#8669; when numeric references are preferred
  • Add aria-label or surrounding text for accessibility
  • Verify your font supports the Arrows block (U+21DD)
  • Provide context when the symbol denotes right direction with a squiggle path

Don’t

  • Confuse ⇝ (squiggle) with → (straight rightwards arrow)
  • Confuse ⇝ with ⇜ (leftwards squiggle arrow)
  • Use CSS \21DD inside HTML text nodes
  • Mix entity styles randomly in one file
  • Use the symbol alone without explaining its right squiggle meaning

Key Takeaways

1

Four HTML references plus CSS all render ⇝

&#x21DD; &#8669; &zigrarr;
2

For CSS, use \21DD in the content property

3

Unicode U+21DD — RIGHTWARDS SQUIGGLE ARROW

4

Prefer &zigrarr; for readability in HTML source

❓ Frequently Asked Questions

Use &#x21DD; (hex), &#8669; (decimal), &zigrarr; (named), or \21DD in CSS content. All four methods render ⇝ correctly.
U+21DD (RIGHTWARDS SQUIGGLE ARROW). Arrows block (U+2190–U+21FF). Hex 21DD, decimal 8669. A right-pointing arrow with a squiggly line.
In diagrams, flowcharts, technical documentation, and notation where a right-pointing squiggle (wavy) arrow indicates direction, approximation, or a non-straight path.
HTML references (&#8669;, &#x21DD;, or &zigrarr;) go in markup. The CSS escape \21DD is used in stylesheets, typically on ::before or ::after. Both produce ⇝.
Yes. &zigrarr; is the named HTML entity for U+21DD. You can also use &#8669; (decimal), &#x21DD; (hex), or \21DD in CSS.

Explore More HTML Entities!

Discover 1500+ HTML character references — arrows, symbols, math operators, 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