| Symboolnaam | Dagger |
| Unicode-versie | 1.1 |
| Unicode | U+2020 |
| Unicode-blok | |
| Algemene categorie | Other Punctuation (Po) |
| CSS-code | \2020 |
| Hexadecimale code | 0x2020 |
| HTML-code | † |
| LaTeX | \dag |
| Symbool | † |
| URL-codering (UTF-8 procent) | %E2%80%A0 |
| Uitgesproken naam / schermlezer | Dagger |
| UTF-8 | E2 80 A0 |
| UTF-16 | 2020 |
| UTF-32 | 00002020 |
1\documentclass{article}2\usepackage{pifont}3\dag 4\end{document}Je kunt het dagger-symbool op de meeste moderne apparaten typen met de volgende methoden:
Alt + 8224 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "dagger", or use Unicode Hex Input with 2020.
Ctrl + Shift + U, type 2020, 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 punctuation support.
1span.dagger::before { content: "\2020"; }1<span>†</span>De weergave van het Dagger-symbool in verschillende programmeertalen vind je in onderstaande tabel:
| Taal | Weergave |
|---|---|
| JavaScript / TypeScript | '\u2020' or String.fromCodePoint(8224) |
| Python | '\N{DAGGER}' or chr(8224) |
| Rust | '\u{2020}' |
| C / C++ | UTF-8 source or wchar_t with U+2020 |
| Go | string(rune(0x2020)) |
| Ruby | "\u{2020}" |