| Symbol Name | Leftwards Triple Arrow |
| Unicode Version | 1.1 |
| Unicode | U+21DA |
| Unicode block | |
| General category | Other Symbol (So) |
| CSS Code | \21DA |
| Hex Code | 0x21DA |
| HTML Code | ⇚ |
| LaTeX | \text{LEFTWARDSTRIPLEARROW} |
| Symbol | ⇚ |
| URL encode (UTF-8 percent) | %E2%87%9A |
| Spoken / screen reader name | Leftwards Triple Arrow |
| UTF-8 | E2 87 9A |
| UTF-16 | 21DA |
| UTF-32 | 000021DA |
1\documentclass{article}2\usepackage{pifont}3\text{LEFTWARDSTRIPLEARROW}4\end{document}You can type the leftwards triple arrow symbol on most modern devices with the help of following methods:
Alt + 8666 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "leftwards triple arrow", or use Unicode Hex Input with 21DA.
Ctrl + Shift + U, type 21da, 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-triple-arrow::before { content: "\21DA"; }1<span>⇚</span>Leftwards Triple Arrow symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| JavaScript / TypeScript | '\u21DA' or String.fromCodePoint(8666) |
| Python | '\N{LEFTWARDS TRIPLE ARROW}' or chr(8666) |
| Rust | '\u{21DA}' |
| C / C++ | UTF-8 source or wchar_t with U+21DA |
| Go | string(rune(0x21DA)) |
| Ruby | "\u{21DA}" |