| Nombre del símbolo | Left Right Arrow |
| Versión Unicode | 1.1 |
| Unicode | U+2194 |
| Bloque Unicode | |
| Categoría general | Math Symbol (Sm) |
| Código CSS | \2194 |
| Código hexadecimal | 0x2194 |
| Código HTML | ↔ |
| LaTeX | \leftrightarrow |
| Símbolo | ↔ |
| Codificación URL (porcentaje UTF-8) | %E2%86%94 |
| Nombre oral / lector de pantalla | 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}Puedes escribir el símbolo left right arrow en la mayoría de dispositivos modernos con los siguientes métodos:
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 representación del símbolo Left Right Arrow en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| 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" |