| Nombre del símbolo | Latin Letter Small Capital I |
| Versión Unicode | 1.1 |
| Unicode | U+026A |
| Bloque Unicode | |
| Categoría general | Lowercase Letter (Ll) |
| Código CSS | \026A |
| Código hexadecimal | 0x026A |
| Código HTML | ɪ |
| LaTeX | \text{LATINLETTERSMALLCAPITALI} |
| Símbolo | ɪ |
| Codificación URL (porcentaje UTF-8) | %C9%AA |
| Nombre oral / lector de pantalla | 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}Puedes escribir el símbolo latin letter small capital i en la mayoría de dispositivos modernos con los siguientes métodos:
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>La representación del símbolo Latin Letter Small Capital I en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| 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}" |