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