| Nom du symbole | Exclamation Mark |
| Version Unicode | 1.1 |
| Unicode | U+0021 |
| Bloc Unicode | |
| Catégorie générale | Other Punctuation (Po) |
| Code CSS | \0021 |
| Code hexadécimal | 0x0021 |
| Code HTML | ! |
| LaTeX | ! |
| Symbole | ! |
| Encodage URL (pourcent UTF-8) | %21 |
| Nom oral / lecteur d’écran | Exclamation Mark |
| UTF-8 | 21 |
| UTF-16 | 0021 |
| UTF-32 | 00000021 |
1\documentclass{article}2\usepackage{pifont}3!4\end{document}Vous pouvez saisir le symbole exclamation mark sur la plupart des appareils modernes avec les méthodes suivantes :
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>La représentation du symbole Exclamation Mark dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| 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}" |