| Symbolname | Right Single Quotation Mark |
| Unicode-Version | 1.1 |
| Unicode | U+2019 |
| Unicode-Block | |
| Allgemeine Kategorie | Final Quote Punctuation (Pf) |
| UTF-8 | E2 80 99 |
| UTF-16 | 2019 |
| UTF-32 | 00002019 |
1\documentclass{article}2\usepackage{pifont}3'4\end{document}Sie können das Symbol right single quotation mark auf den meisten modernen Geräten mit den folgenden Methoden eingeben:
Alt + 8217 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "right single quotation mark", or use Unicode Hex Input with 2019.
Ctrl + Shift + U, type 2019, 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-single-quotation-mark::before { content: "\2019"; }1<span>’</span>Die Darstellung des Symbols Right Single Quotation Mark in verschiedenen Programmiersprachen finden Sie in der folgenden Tabelle:
| Sprache | Darstellung |
|---|---|
| JavaScript / TypeScript | '\u2019' or String.fromCodePoint(8217) |
| Python | '\N{RIGHT SINGLE QUOTATION MARK}' or chr(8217) |
| Rust | '\u{2019}' |
| C / C++ | UTF-8 source or wchar_t with U+2019 |
| Go | string(rune(0x2019)) |
| Ruby | "\u{2019}" |
| CSS-Code |
\2019 |
| Hexadezimalcode | 0x2019 |
| HTML-Code | ’ |
| LaTeX | ' |
| Symbol | ’ |
| URL-Kodierung (UTF-8-Prozent) | %E2%80%99 |
| Ansagename (Screenreader) | Right Single Quotation Mark |