| Nom du symbole | Inverted Exclamation Mark |
| Version Unicode | 1.1 |
| Unicode | U+00A1 |
| Bloc Unicode | |
| Catégorie générale | Other Punctuation (Po) |
| UTF-8 | C2 A1 |
| UTF-16 | 00A1 |
| UTF-32 | 000000A1 |
1\documentclass{article}2\usepackage{pifont}3!`4\end{document}Vous pouvez saisir le symbole inverted exclamation mark sur la plupart des appareils modernes avec les méthodes suivantes :
Alt + 161 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "inverted exclamation mark", or use Unicode Hex Input with 00A1.
Ctrl + Shift + U, type 00a1, 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.inverted-exclamation-mark::before { content: "\00A1"; }1<span>¡</span>La représentation du symbole Inverted Exclamation Mark dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| JavaScript / TypeScript | '\u00A1' or String.fromCodePoint(161) |
| Python | '\N{INVERTED EXCLAMATION MARK}' or chr(161) |
| Rust | '\u{00A1}' |
| C / C++ | UTF-8 source or wchar_t with U+00A1 |
| Go | string(rune(0x00A1)) |
| Ruby | "\u{00A1}" |
| Code CSS |
\00A1 |
| Code hexadécimal | 0x00A1 |
| Code HTML | ¡ |
| LaTeX | !` |
| Symbole | ¡ |
| Encodage URL (pourcent UTF-8) | %C2%A1 |
| Nom oral / lecteur d’écran | Inverted Exclamation Mark |