| Nombre del símbolo | Latin Capital Letter Z |
| Versión Unicode | 1.1 |
| Unicode | U+005A |
| Bloque Unicode | |
| Categoría general | Uppercase Letter (Lu) |
| Código CSS | \005A |
| Código hexadecimal | 0x005A |
| Código HTML | Z |
| LaTeX | Z |
| Símbolo | Z |
| Codificación URL (porcentaje UTF-8) | %5A |
| Nombre oral / lector de pantalla | Latin Capital Letter Z |
| UTF-8 | 5A |
| UTF-16 | 005A |
| UTF-32 | 0000005A |
1\documentclass{article}2\usepackage{pifont}3Z4\end{document}Puedes escribir el símbolo latin capital letter z en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 90 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "latin capital letter z", or use Unicode Hex Input with 005A.
Ctrl + Shift + U, type 005a, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the Latin keyboard.
Paste from this page or use a keyboard with Latin letter support.
1span.capital-z::before { content: "\005A"; font-family: "Charis SIL", "Doulos SIL", "DejaVu Serif", "Times New Roman", serif; }1<span>Z</span>La representación del símbolo Latin Capital Letter Z en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\u005A' or String.fromCodePoint(90) |
| Python | '\N{LATIN CAPITAL LETTER Z}' or chr(90) |
| Rust | '\u{005A}' |
| C / C++ | UTF-8 source or wchar_t with U+005A |
| Go | string(rune(0x005A)) |
| Ruby | "\u{005A}" |