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