| Symbolname | Exclamation Mark |
| Unicode-Version | 1.1 |
| Unicode | U+0021 |
| Unicode-Block | |
| Allgemeine Kategorie | Other Punctuation (Po) |
| CSS-Code | \0021 |
| Hexadezimalcode | 0x0021 |
| HTML-Code | ! |
| LaTeX | ! |
| Symbol | ! |
| URL-Kodierung (UTF-8-Prozent) | %21 |
| Ansagename (Screenreader) | Exclamation Mark |
| UTF-8 | 21 |
| UTF-16 | 0021 |
| UTF-32 | 00000021 |
1\documentclass{article}2\usepackage{pifont}3!4\end{document}Sie können das Symbol exclamation mark auf den meisten modernen Geräten mit den folgenden Methoden eingeben:
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>Die Darstellung des Symbols Exclamation Mark in verschiedenen Programmiersprachen finden Sie in der folgenden Tabelle:
| Sprache | Darstellung |
|---|---|
| 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}" |