| Nombre del símbolo | Inverted Exclamation Mark |
| Versión Unicode | 1.1 |
| Unicode | U+00A1 |
| Bloque Unicode | |
| Categoría general | Other Punctuation (Po) |
| UTF-8 | C2 A1 |
| UTF-16 | 00A1 |
| UTF-32 | 000000A1 |
1\documentclass{article}2\usepackage{pifont}3!`4\end{document}Puedes escribir el símbolo inverted exclamation mark en la mayoría de dispositivos modernos con los siguientes métodos:
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 representación del símbolo Inverted Exclamation Mark en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| 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}" |
| Código CSS |
\00A1 |
| Código hexadecimal | 0x00A1 |
| Código HTML | ¡ |
| LaTeX | !` |
| Símbolo | ¡ |
| Codificación URL (porcentaje UTF-8) | %C2%A1 |
| Nombre oral / lector de pantalla | Inverted Exclamation Mark |