| Nom du symbole | Hangul Letter Eu |
| Version Unicode | 1.1 |
| Unicode | U+3161 |
| Bloc Unicode | |
| Catégorie générale | Other Letter (Lo) |
| Code CSS | \3161 |
| Code hexadécimal | 0x3161 |
| Code HTML | ㅡ |
| LaTeX | \hangul{3161} |
| Symbole | ㅡ |
| Encodage URL (pourcent UTF-8) | %E3%85%A1 |
| Nom oral / lecteur d’écran | Hangul Letter Eu |
| UTF-8 | E3 85 A1 |
| UTF-16 | 3161 |
| UTF-32 | 00003161 |
1\documentclass{article}2\usepackage{pifont}3\hangul{3161}4\end{document}Vous pouvez saisir le symbole hangul letter eu sur la plupart des appareils modernes avec les méthodes suivantes :
Alt + 12641 on Windows (numeric keypad with Num Lock), or insert via Character Map / Korean IME.
Edit → Emoji & Symbols, search "hangul letter eu", or use Unicode Hex Input with 3161.
Ctrl + Shift + U, type 3161, 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-eu::before { content: "\3161"; font-family: "Apple SD Gothic Neo", "Malgun Gothic", "Noto Sans KR", sans-serif; }1<span>ㅡ</span>La représentation du symbole Hangul Letter Eu dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| JavaScript / TypeScript | '\u3161' or String.fromCodePoint(12641) |
| Python | '\N{HANGUL LETTER EU}' or chr(12641) |
| Rust | '\u{3161}' |
| C / C++ | UTF-8 source or wchar_t with U+3161 |
| Go | string(rune(0x3161)) |
| Ruby | "\u{3161}" |