HTML Entity for Right Wave Arrow (↝)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+219D

What Is the Right Wave Arrow Entity?

Right Wave Arrow (↝) is the Arrows-block character at Unicode U+219D (RIGHTWARDS WAVE ARROW). It is a right-pointing arrow drawn with a wavy shaft.

Remember
Character     ↝
Unicode       U+219D
Hex entity    ↝
Decimal       ↝
Named entity  ↝
CSS escape    \219D
Not the same  → (→) · ⇝ (⇝)

All of these produce the same glyph: ↝. Prefer ↝ when you want an explicit entity.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Named entity↝HTML markup (best entity default)
Hex entity↝HTML markup
Decimal entity↝HTML markup
CSS escape\219DStylesheet content
Direct character↝UTF-8 HTML text

When to Use Which

SituationUse
Readable HTML entity source↝
Need a numeric entity↝ or ↝
Generated text via ::before / ::aftercontent: "\219D"
Straight right arrowUse → (U+2192)
Squiggle (zigzag) right arrowUse ⇝ (U+21DD)

Live Preview

Right Wave Arrow in common UI and diagram contexts.

Label snippet Continue ↝
Large glyph ↝
Named entity ↝ → ↝
vs → / ⇝ ↝  |  →  |  ⇝
With entities Hex: ↝ | Decimal: ↝ | Named: ↝

Complete HTML Example

One page that shows this symbol with hex, decimal, named, and CSS. Use View Output or open the live editor.

Hex + Decimal + Named + CSS

All four ways to produce ↝ in a single document.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Right Wave Arrow (↝)</title>
  <style>
    #point::after {
      content: "\219D";
    }
  </style>
</head>
<body>
  <p>Using Hex Code: &#x219D;</p>
  <p>Using HTML Code: &#8605;</p>
  <p>Using Named Entity: &rarrw;</p>
  <p id="point">Using CSS Entity: </p>
  <p><code>Continue &rarrw;</code></p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: U+219D → &#x219D; in HTML. The browser turns it into ↝.

2. Decimal: same code point as 8605 → &#8605;. Same result as hex.

3. Named: &rarrw; is the HTML5 name for this character.

4. CSS: use \219D in content (not an HTML entity). #point::after appends that ↝ after the paragraph text.

Pitfalls & Tips

Common mistakes when working with Right Wave Arrow.

Look-alikes

↝ ≠ → ≠ ⇝

&rarrw; is a wave arrow. &rarr; is straight. &zigrarr; is a squiggle — pick the shaft style you mean.

Mirror

Left wave has no named entity

The leftwards wave arrow (U+219C) has no HTML5 name. Use &#x219C; — see Left Wave Arrow.

Fonts

Glyph may be missing

Wave-arrow coverage varies. Test on your target devices or provide a fallback font.

CSS vs HTML

Do not mix escapes

\219D belongs in CSS. &rarrw; / &#x219D; / &#8605; belong in HTML.

A11y

Add nearby words

Pair the glyph with label text (for example Continue &rarrw;) or use aria-label when it stands alone.

Semicolon

End references

Always finish with ; — write &rarrw;, not &rarrw.

Browser Support

Right Wave Arrow (U+219D) and its entity forms (&rarrw;, &#x219D;, &#8605;, CSS \\219D) are supported in all modern browsers. Glyph coverage depends on the font.

✓ Universal encoding

Right Wave Arrow (&rarrw;)

Encode with named, hex, decimal, or CSS escape — or type ↝ directly in UTF-8 HTML.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer IE 9+
Yes*
U+219D / &rarrw; Full support

Bottom line: Prefer &rarrw; for readable HTML. Use \\219D only inside CSS content.

Key Takeaways

  • Unicode: this symbol is U+219D (decimal 8605).
  • HTML: prefer &rarrw; — or use &#x219D; / &#8605;.
  • CSS: use \219D inside content for generated text.
  • Watch out: &rarrw; ≠ &rarr; ≠ &zigrarr;.

One line: U+219D → &rarrw; / &#x219D; / &#8605; / CSS \219D.

Frequently Asked Questions

Use &rarrw; (named), &#x219D; (hex), &#8605; (decimal), or the CSS escape \219D in the content property. You can also type ↝ directly in UTF-8 HTML.
U+219D (RIGHTWARDS WAVE ARROW). Hex 219D, decimal 8605. It belongs to the Arrows block (U+2190–U+21FF).
Yes. &rarrw; is the HTML5 named entity. You can also use &#x219D; or &#8605;.
Use it for navigation UI, flowcharts, and diagrams when you need a right-pointing wave arrow instead of a straight &rarr;. Prefer &rarrw; for readable HTML.
HTML entities (&rarrw;, &#8605;, or &#x219D;) go in markup. The CSS escape \219D is used in stylesheets (usually in the content property of ::before/::after). Both render ↝.
&rarr; (U+2192) is a plain right arrow. &zigrarr; (U+21DD) is a rightwards squiggle arrow. &rarrw; (U+219D) is a rightwards wave arrow — related wavy forms, different code points.

Did you know?

Right Wave Arrow is Unicode U+219D (decimal 8605) — RIGHTWARDS WAVE ARROW. HTML5 provides &rarrw;. Prefer it for readable source. Do not confuse it with a plain &rarr; (U+2192), the squiggle form &zigrarr; (U+21DD), or the leftwards wave arrow (U+219C, no named entity).

Next: Right White Arrow

Learn the HTML entity for Right White Arrow — next in this sequence.

Continue tutorial →

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