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