| Nome del simbolo | Leftwards Dashed Arrow |
| Versione Unicode | 1.1 |
| Unicode | U+21E0 |
| Blocco Unicode | |
| Categoria generale | Other Symbol (So) |
| Codice CSS | \21E0 |
| Codice esadecimale | 0x21E0 |
| Codice HTML | ⇠ |
| LaTeX | \text{LEFTWARDSDASHEDARROW} |
| Simbolo | ⇠ |
| Codifica URL (percentuale UTF-8) | %E2%87%A0 |
| Nome parlato / screen reader | Leftwards Dashed Arrow |
| UTF-8 | E2 87 A0 |
| UTF-16 | 21E0 |
| UTF-32 | 000021E0 |
1\documentclass{article}2\usepackage{pifont}3\text{LEFTWARDSDASHEDARROW}4\end{document}Puoi digitare il simbolo leftwards dashed arrow sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 8672 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "leftwards dashed arrow", or use Unicode Hex Input with 21E0.
Ctrl + Shift + U, type 21e0, 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-dashed-arrow::before { content: "\21E0"; }1<span>⇠</span>La rappresentazione del simbolo Leftwards Dashed Arrow nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u21E0' or String.fromCodePoint(8672) |
| Python | '\N{LEFTWARDS DASHED ARROW}' or chr(8672) |
| Rust | '\u{21E0}' |
| C / C++ | UTF-8 source or wchar_t with U+21E0 |
| Go | string(rune(0x21E0)) |
| Ruby | "\u{21E0}" |