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