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