| Symbol Name | Right Double Quotation Mark |
| Unicode Version | 1.1 |
| Unicode | U+201D |
| Unicode block | |
| General category | Final Quote Punctuation (Pf) |
| CSS Code |
| UTF-8 | E2 80 9D |
| UTF-16 | 201D |
| UTF-32 | 0000201D |
1\documentclass{article}2\usepackage{pifont}3''4\end{document}You can type the right double quotation mark symbol on most modern devices with the help of following methods:
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>Right Double Quotation Mark symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| 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}" |
\201D |
| Hex Code | 0x201D |
| HTML Code | ” |
| LaTeX | '' |
| Symbol | ” |
| URL encode (UTF-8 percent) | %E2%80%9D |
| Spoken / screen reader name | Right Double Quotation Mark |