HTML Entity for Left Wave Arrow (↜)

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

What You'll Learn

How to display the Left Wave Arrow (↜) in HTML using hexadecimal, decimal, and CSS escape methods. This symbol is U+219C (LEFTWARDS WAVE ARROW) in the Arrows block (U+2190–U+21FF)—a wave-style leftward arrow used in navigation UI, technical documentation, decorative or dynamic UI elements, and flowcharts.

Render it with ↜, ↜, or CSS \219C. There is no named HTML entity. Pair with U+219D (↝, rightwards wave arrow) for bidirectional notation. Do not confuse ↜ with ⇜ (left squiggle arrow) or ← (single leftwards arrow).

⚡ Quick Reference — Left Wave Arrow

Unicode U+219C

Arrows block

Hex Code ↜

Hexadecimal reference

HTML Code ↜

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+219C
Hex code       ↜
HTML code      ↜
Named entity   (none)
CSS code       \219C
Meaning        Leftwards wave arrow
Related        U+219D = rightwards wave arrow (↝)
               U+21DC = left squiggle arrow (⇜)
1

Complete HTML Example

A simple example showing the Left Wave Arrow (↜) using hexadecimal code, decimal HTML code, and a CSS content escape. There is no named HTML entity:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\219C";
  }
 </style>
</head>
<body>
<p>Arrow (hex): &#x219c;</p>
<p>Arrow (decimal): &#8604;</p>
<p id="point">Arrow (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Left Wave 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 Left Wave Arrow (↜) rendered live in different contexts:

Navigation ↜ Back with wave style
Large glyph
Flow diagram Step B ↜ Step A (wave leftward flow)
Wave arrow pair ↜ ↝
Numeric refs &#x219C; &#8604; \219C
Arrow comparison ← ↜ ⇜

🧠 How It Works

1

Hexadecimal Code

&#x219C; uses the Unicode hexadecimal value 219C for the leftwards wave arrow. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

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

CSS stylesheet
=

Same visual result

All three methods produce . Unicode U+219C is in the Arrows block. There is no named HTML entity. Previous: Left Two Headed Arrow.

Use Cases

The Left Wave Arrow (↜) is commonly used in:

🚀 Navigation & Menus

Indicate “back” or leftward navigation with a distinctive wave style in menus and UI controls.

📄 Technical Documentation

Show dynamic or wave-style direction in tutorials and technical writing.

✨ Decorative UI

Add a wave arrow for a stylish or dynamic look in buttons and links.

📊 Flowcharts & Diagrams

Display flow direction with a wave arrow in process diagrams and flowcharts.

💻 Buttons & Controls

Use in custom buttons or pagination for “previous” or “undo” with a wave visual cue.

🌐 Web Applications

Use in dashboards and multi-step forms for directional or dynamic cues.

💡 Best Practices

Do

  • Use &#x219C; or &#8604; for numeric references
  • Pair the symbol with text or aria-label (e.g. “Go back”) for accessibility
  • Verify your font supports the Arrows block (U+219C)
  • Keep one entity style per project for consistency
  • Use the wave style to distinguish back/undo from straight arrows

Don’t

  • Assume a named HTML entity exists—there is none for U+219C
  • Confuse ↜ (wave) with ⇜ (squiggle) or ← (straight)
  • Use CSS \219C inside HTML text nodes
  • Use the symbol alone without explaining its left/back meaning
  • Mix entity styles randomly in one file

Key Takeaways

1

Two HTML references plus CSS all render ↜

&#x219C; &#8604;
2

For CSS, use \219C in the content property

3

Unicode U+219C — LEFTWARDS WAVE ARROW

4

No named HTML entity—use hex or decimal numeric codes

❓ Frequently Asked Questions

Use &#x219C; (hex), &#8604; (decimal), or \219C in CSS content. All three methods render ↜ correctly. There is no named HTML entity.
U+219C (LEFTWARDS WAVE ARROW). Arrows block (U+2190–U+21FF). Hex 219C, decimal 8604. Used for leftward wave or dynamic direction in UI and notation.
In navigation interfaces and menus, technical documentation, decorative or dynamic UI elements, flowcharts and diagrams, and any content requiring a wave-style leftward arrow symbol.
HTML references (&#8604; or &#x219C;) go in markup. The CSS escape \219C is used in stylesheets, typically on ::before or ::after. Both produce ↜.
Named HTML entities are reserved for commonly used characters. Arrow symbols like U+219C use numeric hex or decimal codes or CSS escapes—standard practice for many arrows in the Arrows Unicode block.

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