| Nome del simbolo | Hangul Letter Yi |
| Versione Unicode | 1.1 |
| Unicode | U+3162 |
| Blocco Unicode | |
| Categoria generale | Other Letter (Lo) |
| Codice CSS | \3162 |
| Codice esadecimale | 0x3162 |
| Codice HTML | ㅢ |
| LaTeX | \hangul{3162} |
| Simbolo | ㅢ |
| Codifica URL (percentuale UTF-8) | %E3%85%A2 |
| Nome parlato / screen reader | 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}Puoi digitare il simbolo hangul letter yi sulla maggior parte dei dispositivi moderni con i seguenti metodi:
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 rappresentazione del simbolo Hangul Letter Yi nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| 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}" |