| Nome del simbolo | Left Double Quotation Mark |
| Versione Unicode | 1.1 |
| Unicode | U+201C |
| Blocco Unicode | |
| Categoria generale | Initial Quote Punctuation (Pi) |
| UTF-8 | E2 80 9C |
| UTF-16 | 201C |
| UTF-32 | 0000201C |
1\documentclass{article}2\usepackage{pifont}3``4\end{document}Puoi digitare il simbolo left double quotation mark sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 8220 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "left double quotation mark", or use Unicode Hex Input with 201C.
Ctrl + Shift + U, type 201c, 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-double-quotation-mark::before { content: "\201C"; }1<span>“</span>La rappresentazione del simbolo Left Double Quotation Mark nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u201C' or String.fromCodePoint(8220) |
| Python | '\N{LEFT DOUBLE QUOTATION MARK}' or chr(8220) |
| Rust | '\u{201C}' |
| C / C++ | UTF-8 source or wchar_t with U+201C |
| Go | string(rune(0x201C)) |
| Ruby | "\u{201C}" |
| Codice CSS |
\201C |
| Codice esadecimale | 0x201C |
| Codice HTML | “ |
| LaTeX | `` |
| Simbolo | “ |
| Codifica URL (percentuale UTF-8) | %E2%80%9C |
| Nome parlato / screen reader | Left Double Quotation Mark |