HTML Entity for Left Squiggle Arrow (⇜)

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

What You'll Learn

How to display the Left Squiggle Arrow (⇜) in HTML using hexadecimal, decimal, and CSS escape methods. This symbol is U+21DC (LEFTWARDS SQUIGGLE ARROW) in the Arrows block (U+2190–U+21FF)—a left-pointing arrow with a squiggly (wavy) line, often used in diagrams, flowcharts, and technical notation.

Render it with ⇜, ⇜, or CSS \21DC. There is no named HTML entity. Do not confuse ⇜ with U+2190 (←, simple leftwards arrow / ←) or U+21DD (⇝, rightwards squiggle arrow).

⚡ Quick Reference — Left Squiggle Arrow

Unicode U+21DC

Arrows block

Hex Code ⇜

Hexadecimal reference

HTML Code ⇜

Decimal reference

Named Entity

Use numeric codes only

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

Complete HTML Example

A simple example showing the Left Squiggle 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: "\21DC";
  }
 </style>
</head>
<body>
<p>Arrow (hex): &#x21dc;</p>
<p>Arrow (decimal): &#8668;</p>
<p id="point">Arrow (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

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

Inline text ⇜ Return to the previous step with a squiggle path.
Large glyph
Flow diagram Step B ⇜ Step A (wavy leftward flow)
Navigation ⇜ Back
Arrow comparison ← ⇜ ⇝
Numeric refs &#x21DC; &#8668; \21DC

🧠 How It Works

1

Hexadecimal Code

&#x21DC; uses the Unicode hexadecimal value 21DC for the leftwards squiggle arrow. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\21DC 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+21DC is in the Arrows block. There is no named HTML entity—use numeric codes. Previous: Left Square Bracket Quill.

Use Cases

The Left Squiggle Arrow (⇜) is commonly used in:

📊 Diagrams & Flowcharts

Indicate leftward 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 leftward relation or mapping with a squiggle arrow variant.

💻 UI & Icons

Display “back” or “previous” with a distinct squiggle arrow style.

📚 Academic & Research

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

🚀 Navigation

Indicate “go left” or reverse direction with a wavy/squiggle arrow.

💡 Best Practices

Do

  • Use &#x21DC; or &#8668; for numeric references
  • Add aria-label or surrounding text for accessibility
  • Verify your font supports the Arrows block (U+21DC)
  • Keep one entity style per project for consistency
  • Provide context when the symbol denotes left direction with a squiggle path

Don’t

  • Assume a named HTML entity exists—there is none for U+21DC
  • Confuse ⇜ (squiggle) with ← (straight leftwards arrow)
  • Use CSS \21DC inside HTML text nodes
  • Mix entity styles randomly in one file
  • Use the symbol alone without explaining its left squiggle meaning

Key Takeaways

1

Two HTML references plus CSS all render ⇜

&#x21DC; &#8668;
2

For CSS, use \21DC in the content property

3

Unicode U+21DC — LEFTWARDS SQUIGGLE ARROW

4

No named HTML entity—use hex or decimal numeric codes

❓ Frequently Asked Questions

Use &#x21DC; (hex), &#8668; (decimal), or \21DC in CSS content. All three methods render ⇜ correctly. There is no named HTML entity.
U+21DC (LEFTWARDS SQUIGGLE ARROW). Arrows block (U+2190–U+21FF). Hex 21DC, decimal 8668. A left-pointing arrow with a squiggly line.
In diagrams, flowcharts, technical documentation, and notation where a left-pointing squiggle (wavy) arrow indicates direction, approximation, or a non-straight path.
HTML references (&#8668; or &#x21DC;) go in markup. The CSS escape \21DC is used in stylesheets, typically on ::before or ::after. Both produce ⇜.
No. There is no named HTML entity for U+21DC. Use &#8668; (decimal), &#x21DC; (hex), or \21DC 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