| Nombre del símbolo | Hangul Letter Yi |
| Versión Unicode | 1.1 |
| Unicode | U+3162 |
| Bloque Unicode | |
| Categoría general | Other Letter (Lo) |
| Código CSS | \3162 |
| Código hexadecimal | 0x3162 |
| Código HTML | ㅢ |
| LaTeX | \hangul{3162} |
| Símbolo | ㅢ |
| Codificación URL (porcentaje UTF-8) | %E3%85%A2 |
| Nombre oral / lector de pantalla | Hangul Letter Yi |
| UTF-8 | E3 85 A2 |
| UTF-16 | 3162 |
| UTF-32 | 00003162 |
1\documentclass{article}2\usepackage{pifont}3\hangul{3162}4\end{document}Puedes escribir el símbolo hangul letter yi en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 12642 on Windows (numeric keypad with Num Lock), or insert via Character Map / Korean IME.
Edit → Emoji & Symbols, search "hangul letter yi", or use Unicode Hex Input with 3162.
Ctrl + Shift + U, type 3162, 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-yi::before { content: "\3162"; font-family: "Apple SD Gothic Neo", "Malgun Gothic", "Noto Sans KR", sans-serif; }1<span>ㅢ</span>La representación del símbolo Hangul Letter Yi en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\u3162' or String.fromCodePoint(12642) |
| Python | '\N{HANGUL LETTER YI}' or chr(12642) |
| Rust | '\u{3162}' |
| C / C++ | UTF-8 source or wchar_t with U+3162 |
| Go | string(rune(0x3162)) |
| Ruby | "\u{3162}" |