| Nome del simbolo | Leftwards Squiggle Arrow |
| Versione Unicode | 1.1 |
| Unicode | U+21DC |
| Blocco Unicode | |
| Categoria generale | Other Symbol (So) |
| Codice CSS | \21DC |
| Codice esadecimale | 0x21DC |
| Codice HTML | ⇜ |
| LaTeX | \text{LEFTWARDSSQUIGGLEARROW} |
| Simbolo | ⇜ |
| Codifica URL (percentuale UTF-8) | %E2%87%9C |
| Nome parlato / screen reader | Leftwards Squiggle Arrow |
| UTF-8 | E2 87 9C |
| UTF-16 | 21DC |
| UTF-32 | 000021DC |
1\documentclass{article}2\usepackage{pifont}3\text{LEFTWARDSSQUIGGLEARROW}4\end{document}Puoi digitare il simbolo leftwards squiggle arrow sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 8668 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "leftwards squiggle arrow", or use Unicode Hex Input with 21DC.
Ctrl + Shift + U, type 21dc, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the symbol keyboard.
Paste from this page or use a keyboard with arrow symbol support.
1span.leftwards-squiggle-arrow::before { content: "\21DC"; }1<span>⇜</span>La rappresentazione del simbolo Leftwards Squiggle Arrow nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u21DC' or String.fromCodePoint(8668) |
| Python | '\N{LEFTWARDS SQUIGGLE ARROW}' or chr(8668) |
| Rust | '\u{21DC}' |
| C / C++ | UTF-8 source or wchar_t with U+21DC |
| Go | string(rune(0x21DC)) |
| Ruby | "\u{21DC}" |