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