| Nombre del símbolo | Leftwards Arrow To Bar |
| Versión Unicode | 1.1 |
| Unicode | U+21E4 |
| Bloque Unicode | |
| Categoría general | Other Symbol (So) |
| Código CSS | \21E4 |
| Código hexadecimal | 0x21E4 |
| Código HTML | ⇤ |
| LaTeX | \text{LEFTWARDSARROWTOBAR} |
| Símbolo | ⇤ |
| Codificación URL (porcentaje UTF-8) | %E2%87%A4 |
| Nombre oral / lector de pantalla | Leftwards Arrow To Bar |
| UTF-8 | E2 87 A4 |
| UTF-16 | 21E4 |
| UTF-32 | 000021E4 |
1\documentclass{article}2\usepackage{pifont}3\text{LEFTWARDSARROWTOBAR}4\end{document}Puedes escribir el símbolo leftwards arrow to bar en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 8676 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "leftwards arrow to bar", or use Unicode Hex Input with 21E4.
Ctrl + Shift + U, type 21e4, 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.leftwards-arrow-to-bar::before { content: "\21E4"; }1<span>⇤</span>La representación del símbolo Leftwards Arrow To Bar en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\u21E4' or String.fromCodePoint(8676) |
| Python | '\N{LEFTWARDS ARROW TO BAR}' or chr(8676) |
| Rust | '\u{21E4}' |
| C / C++ | UTF-8 source or wchar_t with U+21E4 |
| Go | string(rune(0x21E4)) |
| Ruby | "\u{21E4}" |