| Nome del simbolo | Latin Small Letter I |
| Versione Unicode | 1.1 |
| Unicode | U+0069 |
| Blocco Unicode | |
| Categoria generale | Lowercase Letter (Ll) |
| Codice CSS | \0069 |
| Codice esadecimale | 0x0069 |
| Codice HTML | i |
| LaTeX | i |
| Simbolo | i |
| Codifica URL (percentuale UTF-8) | %69 |
| Nome parlato / screen reader | Latin Small Letter I |
| UTF-8 | 69 |
| UTF-16 | 0069 |
| UTF-32 | 00000069 |
1\documentclass{article}2\usepackage{pifont}3i4\end{document}Puoi digitare il simbolo latin small letter i sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 105 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "latin small letter i", or use Unicode Hex Input with 0069.
Ctrl + Shift + U, type 0069, 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.i::before { content: "\0069"; font-family: "Charis SIL", "Doulos SIL", "DejaVu Serif", "Times New Roman", serif; }1<span>i</span>La rappresentazione del simbolo Latin Small Letter I nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u0069' or String.fromCodePoint(105) |
| Python | '\N{LATIN SMALL LETTER I}' or chr(105) |
| Rust | '\u{0069}' |
| C / C++ | UTF-8 source or wchar_t with U+0069 |
| Go | string(rune(0x0069)) |
| Ruby | "\u{0069}" |