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