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