| Symbolname | Right Double Quotation Mark |
| Unicode-Version | 1.1 |
| Unicode | U+201D |
| Unicode-Block | |
| Allgemeine Kategorie | 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}Sie können das Symbol right double quotation mark auf den meisten modernen Geräten mit den folgenden Methoden eingeben:
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>Die Darstellung des Symbols Right Double Quotation Mark in verschiedenen Programmiersprachen finden Sie in der folgenden Tabelle:
| Sprache | Darstellung |
|---|---|
| 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}" |
| CSS-Code |
\201D |
| Hexadezimalcode | 0x201D |
| HTML-Code | ” |
| LaTeX | '' |
| Symbol | ” |
| URL-Kodierung (UTF-8-Prozent) | %E2%80%9D |
| Ansagename (Screenreader) | Right Double Quotation Mark |