| Nombre del símbolo | Greek Small Letter Zeta |
| Versión Unicode | 1.1 |
| Unicode | U+03B6 |
| Bloque Unicode | |
| Categoría general | Lowercase Letter (Ll) |
| Código CSS | \03B6 |
| Código hexadecimal | 0x03B6 |
| Código HTML | ζ |
| LaTeX | \zeta |
| Símbolo | ζ |
| Codificación URL (porcentaje UTF-8) | %CE%B6 |
| Nombre oral / lector de pantalla | Greek Small Letter Zeta |
| UTF-8 | CE B6 |
| UTF-16 | 03B6 |
| UTF-32 | 000003B6 |
1\documentclass{article}2\usepackage{pifont}3\zeta4\end{document}Puedes escribir el símbolo greek small letter zeta en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 950 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "greek small letter zeta", or use Unicode Hex Input with 03B6.
Ctrl + Shift + U, type 03b6, 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.zeta::before { content: "\03B6"; font-family: "Times New Roman", "Palatino Linotype", "DejaVu Serif", serif; }1<span>ζ</span>La representación del símbolo Greek Small Letter Zeta en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\u03B6' or String.fromCodePoint(950) |
| Python | '\N{GREEK SMALL LETTER ZETA}' or chr(950) |
| Rust | '\u{03B6}' |
| C / C++ | UTF-8 source or wchar_t with U+03B6 |
| Go | string(rune(0x03B6)) |
| Ruby | "\u{03B6}" |