| Nombre del símbolo | Hangul Syllable Min |
| Versión Unicode | 2.0 |
| Unicode | U+BBFC |
| Bloque Unicode | |
| Categoría general | Other Letter (Lo) |
| Código CSS | \BBFC |
| Código hexadecimal | 0xBBFC |
| Código HTML | 민 |
| LaTeX | \hangul{BBFC} |
| Símbolo | 민 |
| Codificación URL (porcentaje UTF-8) | %EB%AF%BC |
| Nombre oral / lector de pantalla | Hangul Syllable Min |
| UTF-8 | EB AF BC |
| UTF-16 | BBFC |
| UTF-32 | 0000BBFC |
1\documentclass{article}2\usepackage{pifont}3\hangul{BBFC}4\end{document}Puedes escribir el símbolo hangul syllable min en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 48124 on Windows (numeric keypad with Num Lock), or insert via Character Map / Korean IME.
Edit → Emoji & Symbols, search "hangul syllable min", or use Unicode Hex Input with BBFC.
Ctrl + Shift + U, type bbfc, 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-min::before { content: "\BBFC"; font-family: "Apple SD Gothic Neo", "Malgun Gothic", "Noto Sans KR", sans-serif; }1<span>민</span>La representación del símbolo Hangul Syllable Min en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\uBBFC' or String.fromCodePoint(48124) |
| Python | '\N{HANGUL SYLLABLE MIN}' or chr(48124) |
| Rust | '\u{BBFC}' |
| C / C++ | UTF-8 source or wchar_t with U+BBFC |
| Go | string(rune(0xBBFC)) |
| Ruby | "\u{BBFC}" |