| Symbol Name | Leftwards Arrow With Loop |
| Unicode Version | 1.1 |
| Unicode | U+21AB |
| Unicode block | |
| General category | Other Symbol (So) |
| CSS Code | \21AB |
| Hex Code | 0x21AB |
| HTML Code | ↫ |
| LaTeX | \text{LEFTWARDSARROWWITHLOOP} |
| Symbol | ↫ |
| URL encode (UTF-8 percent) | %E2%86%AB |
| Spoken / screen reader name | 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}You can type the leftwards arrow with loop symbol on most modern devices with the help of following methods:
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>Leftwards Arrow With Loop symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| 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}" |