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