| Symbol Name | Latin Small Letter I |
| Unicode Version | 1.1 |
| Unicode | U+0069 |
| Unicode block | |
| General category | Lowercase Letter (Ll) |
| CSS Code | \0069 |
| Hex Code | 0x0069 |
| HTML Code | i |
| LaTeX | i |
| Symbol | i |
| URL encode (UTF-8 percent) | %69 |
| Spoken / screen reader name | Latin Small Letter I |
| UTF-8 | 69 |
| UTF-16 | 0069 |
| UTF-32 | 00000069 |
1\documentclass{article}2\usepackage{pifont}3i4\end{document}You can type the latin small letter i symbol on most modern devices with the help of following methods:
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>Latin Small Letter I symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| 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}" |