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