| Symboolnaam | Left Right Arrow |
| Unicode-versie | 1.1 |
| Unicode | U+2194 |
| Unicode-blok | |
| Algemene categorie | Math Symbol (Sm) |
| CSS-code | \2194 |
| Hexadecimale code | 0x2194 |
| HTML-code | ↔ |
| LaTeX | \leftrightarrow |
| Symbool | ↔ |
| URL-codering (UTF-8 procent) | %E2%86%94 |
| Uitgesproken naam / schermlezer | 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}Je kunt het left right arrow-symbool op de meeste moderne apparaten typen met de volgende methoden:
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>De weergave van het Left Right Arrow-symbool in verschillende programmeertalen vind je in onderstaande tabel:
| Taal | Weergave |
|---|---|
| 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" |