| Symbol Name | Latin Letter Small Capital I |
| Unicode Version | 1.1 |
| Unicode | U+026A |
| Unicode block | |
| General category | Lowercase Letter (Ll) |
| CSS Code | \026A |
| Hex Code | 0x026A |
| HTML Code | ɪ |
| LaTeX | \text{LATINLETTERSMALLCAPITALI} |
| Symbol | ɪ |
| URL encode (UTF-8 percent) | %C9%AA |
| Spoken / screen reader name | Latin Letter Small Capital I |
| UTF-8 | C9 AA |
| UTF-16 | 026A |
| UTF-32 | 0000026A |
1\documentclass{article}2\usepackage{pifont}3\text{LATINLETTERSMALLCAPITALI}4\end{document}You can type the latin letter small capital i symbol on most modern devices with the help of following methods:
Alt + 618 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "latin letter small capital i", or use Unicode Hex Input with 026A.
Ctrl + Shift + U, type 026a, 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.small-capital-i::before { content: "\026A"; font-family: "Charis SIL", "Doulos SIL", "DejaVu Serif", "Times New Roman", serif; }1<span>ɪ</span>Latin Letter Small Capital I symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| JavaScript / TypeScript | '\u026A' or String.fromCodePoint(618) |
| Python | '\N{LATIN LETTER SMALL CAPITAL I}' or chr(618) |
| Rust | '\u{026A}' |
| C / C++ | UTF-8 source or wchar_t with U+026A |
| Go | string(rune(0x026A)) |
| Ruby | "\u{026A}" |