| Symbol Name | Quadrant Lower Left |
| Unicode Version | 3.2 |
| Unicode | U+2596 |
| Unicode block | |
| General category | Other Symbol (So) |
| CSS Code | \2596 |
| Hex Code | 0x2596 |
| HTML Code | ▖ |
| LaTeX | \text{QUADRANTLOWERLEFT} |
| Symbol | ▖ |
| URL encode (UTF-8 percent) | %E2%96%96 |
| Spoken / screen reader name | Quadrant Lower Left |
| UTF-8 | E2 96 96 |
| UTF-16 | 2596 |
| UTF-32 | 00002596 |
1\documentclass{article}2\usepackage{pifont}3\text{QUADRANTLOWERLEFT}4\end{document}You can type the quadrant lower left symbol on most modern devices with the help of following methods:
Alt + 9622 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "quadrant lower left", or use Unicode Hex Input with 2596.
Ctrl + Shift + U, type 2596, 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 block element support.
1span.quadrant-lower-left::before { content: "\2596"; }1<span>▖</span>Quadrant Lower Left symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| JavaScript / TypeScript | '\u2596' or String.fromCodePoint(9622) |
| Python | '\N{QUADRANT LOWER LEFT}' or chr(9622) |
| Rust | '\u{2596}' |
| C / C++ | UTF-8 source or wchar_t with U+2596 |
| Go | string(rune(0x2596)) |
| Ruby | "\u{2596}" |