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