| Nome del simbolo | Left Angle Bracket |
| Versione Unicode | 1.1 |
| Unicode | U+3008 |
| Blocco Unicode | |
| Categoria generale | Open Punctuation (Ps) |
| UTF-8 | E3 80 88 |
| UTF-16 | 3008 |
| UTF-32 | 00003008 |
1\documentclass{article}2\usepackage{pifont}3\langle 4\end{document}Puoi digitare il simbolo left angle bracket sulla maggior parte dei dispositivi moderni con i seguenti metodi:
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>La rappresentazione del simbolo Left Angle Bracket nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| 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}" |
| Codice CSS |
\3008 |
| Codice esadecimale | 0x3008 |
| Codice HTML | 〈 |
| LaTeX | \langle |
| Simbolo | 〈 |
| Codifica URL (percentuale UTF-8) | %E3%80%88 |
| Nome parlato / screen reader | Left Angle Bracket |