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