| Nombre del símbolo | Latin Small Letter I |
| Versión Unicode | 1.1 |
| Unicode | U+0069 |
| Bloque Unicode | |
| Categoría general | Lowercase Letter (Ll) |
| Código CSS | \0069 |
| Código hexadecimal | 0x0069 |
| Código HTML | i |
| LaTeX | i |
| Símbolo | i |
| Codificación URL (porcentaje UTF-8) | %69 |
| Nombre oral / lector de pantalla | Latin Small Letter I |
| UTF-8 | 69 |
| UTF-16 | 0069 |
| UTF-32 | 00000069 |
1\documentclass{article}2\usepackage{pifont}3i4\end{document}Puedes escribir el símbolo latin small letter i en la mayoría de dispositivos modernos con los siguientes métodos:
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 representación del símbolo Latin Small Letter I en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| 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}" |