| Symboolnaam | Dotted Cross |
| Unicode-versie | 4.1 |
| Unicode | U+205C |
| Unicode-blok | |
| Algemene categorie | Other Punctuation (Po) |
| CSS-code | \205C |
| Hexadecimale code | 0x205C |
| HTML-code | ⁜ |
| LaTeX | \text{DOTTEDCROSS} |
| Symbool | ⁜ |
| URL-codering (UTF-8 procent) | %E2%81%9C |
| Uitgesproken naam / schermlezer | Dotted Cross |
| UTF-8 | E2 81 9C |
| UTF-16 | 205C |
| UTF-32 | 0000205C |
1\documentclass{article}2\usepackage{pifont}3\text{DOTTEDCROSS}4\end{document}Je kunt het dotted cross-symbool op de meeste moderne apparaten typen met de volgende methoden:
Alt + 8284 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "dotted cross", or use Unicode Hex Input with 205C.
Ctrl + Shift + U, type 205c, 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.dotted-cross::before { content: "\205C"; }1<span>⁜</span>De weergave van het Dotted Cross-symbool in verschillende programmeertalen vind je in onderstaande tabel:
| Taal | Weergave |
|---|---|
| JavaScript / TypeScript | '\u205C' or String.fromCodePoint(8284) |
| Python | '\N{DOTTED CROSS}' or chr(8284) |
| Rust | '\u{205C}' |
| C / C++ | UTF-8 source or wchar_t with U+205C |
| Go | string(rune(0x205C)) |
| Ruby | "\u{205C}" |