| Nombre del símbolo | Hangul Letter I |
| Versión Unicode | 1.1 |
| Unicode | U+3163 |
| Bloque Unicode | |
| Categoría general | Other Letter (Lo) |
| Código CSS | \3163 |
| Código hexadecimal | 0x3163 |
| Código HTML | ㅣ |
| LaTeX | \hangul{3163} |
| Símbolo | ㅣ |
| Codificación URL (porcentaje UTF-8) | %E3%85%A3 |
| Nombre oral / lector de pantalla | Hangul Letter I |
| UTF-8 | E3 85 A3 |
| UTF-16 | 3163 |
| UTF-32 | 00003163 |
1\documentclass{article}2\usepackage{pifont}3\hangul{3163}4\end{document}Puedes escribir el símbolo hangul letter i en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 12643 on Windows (numeric keypad with Num Lock), or insert via Character Map / Korean IME.
Edit → Emoji & Symbols, search "hangul letter i", or use Unicode Hex Input with 3163.
Ctrl + Shift + U, type 3163, then Enter (layout-dependent), or use an IBus Hangul table.
Paste from this page, use text replacement, or pick from the Korean keyboard.
Paste from this page or use a keyboard with Hangul support.
1span.hangul-letter-i::before { content: "\3163"; font-family: "Apple SD Gothic Neo", "Malgun Gothic", "Noto Sans KR", sans-serif; }1<span>ㅣ</span>La representación del símbolo Hangul Letter I en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\u3163' or String.fromCodePoint(12643) |
| Python | '\N{HANGUL LETTER I}' or chr(12643) |
| Rust | '\u{3163}' |
| C / C++ | UTF-8 source or wchar_t with U+3163 |
| Go | string(rune(0x3163)) |
| Ruby | "\u{3163}" |