| Nome del simbolo | Left Right Arrow |
| Versione Unicode | 1.1 |
| Unicode | U+2194 |
| Blocco Unicode | |
| Categoria generale | Math Symbol (Sm) |
| Codice CSS | \2194 |
| Codice esadecimale | 0x2194 |
| Codice HTML | ↔ |
| LaTeX | \leftrightarrow |
| Simbolo | ↔ |
| Codifica URL (percentuale UTF-8) | %E2%86%94 |
| Nome parlato / screen reader | Left Right Arrow |
| UTF-8 | E2 86 94 |
| UTF-16 | 2194 |
| UTF-32 | 00002194 |
1\documentclass{article}2\usepackage{pifont}3\leftrightarrow 4\end{document}Puoi digitare il simbolo left right arrow sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 8596 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "left right arrow", or use Unicode Hex Input with 2194.
Ctrl + Shift + U, type 2194, 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 math symbol support.
1span.left-right-arrow::before { content: "\2194"; }1<span>↔</span>La rappresentazione del simbolo Left Right Arrow nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u2194' or String.fromCodePoint(0x2194) |
| Python | '\N{LEFT RIGHT ARROW}' or chr(8596) |
| Rust | '\u{2194}' |
| C / C++ | UTF-8 source or wchar_t with U+2194 |
| Go | string(rune(0x2194)) |
| Ruby | "\u2194" |