| Symboolnaam | Inverted Exclamation Mark |
| Unicode-versie | 1.1 |
| Unicode | U+00A1 |
| Unicode-blok | |
| Algemene categorie | Other Punctuation (Po) |
| CSS-code |
| UTF-8 | C2 A1 |
| UTF-16 | 00A1 |
| UTF-32 | 000000A1 |
1\documentclass{article}2\usepackage{pifont}3!`4\end{document}Je kunt het inverted exclamation mark-symbool op de meeste moderne apparaten typen met de volgende methoden:
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>De weergave van het Inverted Exclamation Mark-symbool in verschillende programmeertalen vind je in onderstaande tabel:
| Taal | Weergave |
|---|---|
| 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}" |
\00A1 |
| Hexadecimale code | 0x00A1 |
| HTML-code | ¡ |
| LaTeX | !` |
| Symbool | ¡ |
| URL-codering (UTF-8 procent) | %C2%A1 |
| Uitgesproken naam / schermlezer | Inverted Exclamation Mark |