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