| Nome del simbolo | Leftwards Arrow To Bar |
| Versione Unicode | 1.1 |
| Unicode | U+21E4 |
| Blocco Unicode | |
| Categoria generale | Other Symbol (So) |
| Codice CSS | \21E4 |
| Codice esadecimale | 0x21E4 |
| Codice HTML | ⇤ |
| LaTeX | \text{LEFTWARDSARROWTOBAR} |
| Simbolo | ⇤ |
| Codifica URL (percentuale UTF-8) | %E2%87%A4 |
| Nome parlato / screen reader | 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}Puoi digitare il simbolo leftwards arrow to bar sulla maggior parte dei dispositivi moderni con i seguenti metodi:
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 rappresentazione del simbolo Leftwards Arrow To Bar nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| 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}" |