| Nome del simbolo | Greek Capital Letter Iota |
| Versione Unicode | 1.1 |
| Unicode | U+0399 |
| Blocco Unicode | |
| Categoria generale | Uppercase Letter (Lu) |
| Codice CSS | \0399 |
| Codice esadecimale | 0x0399 |
| Codice HTML | Ι |
| LaTeX | I |
| Simbolo | Ι |
| Codifica URL (percentuale UTF-8) | %CE%99 |
| Nome parlato / screen reader | Greek Capital Letter Iota |
| UTF-8 | CE 99 |
| UTF-16 | 0399 |
| UTF-32 | 00000399 |
1\documentclass{article}2\usepackage{pifont}3I4\end{document}Puoi digitare il simbolo greek capital letter iota sulla maggior parte dei dispositivi moderni con i seguenti metodi:
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 rappresentazione del simbolo Greek Capital Letter Iota nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| 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}" |