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