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