| Symbol Name | Left Square Bracket |
| Unicode Version | 1.1 |
| Unicode | U+005B |
| Unicode block | |
| General category | Open Punctuation (Ps) |
| CSS Code | \005B |
| Hex Code | 0x005B |
| HTML Code | [ |
| LaTeX | [ |
| Symbol | [ |
| URL encode (UTF-8 percent) | %5B |
| Spoken / screen reader name | Left Square Bracket |
| UTF-8 | 5B |
| UTF-16 | 005B |
| UTF-32 | 0000005B |
1\documentclass{article}2\usepackage{pifont}3[4\end{document}You can type the left square bracket symbol on most modern devices with the help of following methods:
Alt + 91 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "left square bracket", or use Unicode Hex Input with 005B.
Ctrl + Shift + U, type 005b, 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 bracket and quote support.
1span.left-square-bracket::before { content: "\005B"; }1<span>[</span>Left Square Bracket symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| JavaScript / TypeScript | '\u005B' or String.fromCodePoint(91) |
| Python | '\N{LEFT SQUARE BRACKET}' or chr(91) |
| Rust | '\u{005B}' |
| C / C++ | UTF-8 source or wchar_t with U+005B |
| Go | string(rune(0x005B)) |
| Ruby | "\u{005B}" |