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