| Nome del simbolo | Leftwards Arrow With Loop |
| Versione Unicode | 1.1 |
| Unicode | U+21AB |
| Blocco Unicode | |
| Categoria generale | Other Symbol (So) |
| Codice CSS | \21AB |
| Codice esadecimale | 0x21AB |
| Codice HTML | ↫ |
| LaTeX | \text{LEFTWARDSARROWWITHLOOP} |
| Simbolo | ↫ |
| Codifica URL (percentuale UTF-8) | %E2%86%AB |
| Nome parlato / screen reader | Leftwards Arrow With Loop |
| UTF-8 | E2 86 AB |
| UTF-16 | 21AB |
| UTF-32 | 000021AB |
1\documentclass{article}2\usepackage{pifont}3\text{LEFTWARDSARROWWITHLOOP}4\end{document}Puoi digitare il simbolo leftwards arrow with loop sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 8619 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "leftwards arrow with loop", or use Unicode Hex Input with 21AB.
Ctrl + Shift + U, type 21ab, 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-with-loop::before { content: "\21AB"; }1<span>↫</span>La rappresentazione del simbolo Leftwards Arrow With Loop nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u21AB' or String.fromCodePoint(8619) |
| Python | '\N{LEFTWARDS ARROW WITH LOOP}' or chr(8619) |
| Rust | '\u{21AB}' |
| C / C++ | UTF-8 source or wchar_t with U+21AB |
| Go | string(rune(0x21AB)) |
| Ruby | "\u{21AB}" |