| Symboolnaam | Left Single Quotation Mark |
| Unicode-versie | 1.1 |
| Unicode | U+2018 |
| Unicode-blok | |
| Algemene categorie | Initial Quote Punctuation (Pi) |
| CSS-code |
| UTF-8 | E2 80 98 |
| UTF-16 | 2018 |
| UTF-32 | 00002018 |
1\documentclass{article}2\usepackage{pifont}3`4\end{document}Je kunt het left single quotation mark-symbool op de meeste moderne apparaten typen met de volgende methoden:
Alt + 8216 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "left single quotation mark", or use Unicode Hex Input with 2018.
Ctrl + Shift + U, type 2018, 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-single-quotation-mark::before { content: "\2018"; }1<span>‘</span>De weergave van het Left Single Quotation Mark-symbool in verschillende programmeertalen vind je in onderstaande tabel:
| Taal | Weergave |
|---|---|
| JavaScript / TypeScript | '\u2018' or String.fromCodePoint(8216) |
| Python | '\N{LEFT SINGLE QUOTATION MARK}' or chr(8216) |
| Rust | '\u{2018}' |
| C / C++ | UTF-8 source or wchar_t with U+2018 |
| Go | string(rune(0x2018)) |
| Ruby | "\u{2018}" |
\2018 |
| Hexadecimale code | 0x2018 |
| HTML-code | ‘ |
| LaTeX | ` |
| Symbool | ‘ |
| URL-codering (UTF-8 procent) | %E2%80%98 |
| Uitgesproken naam / schermlezer | Left Single Quotation Mark |