| Nome del simbolo | Hangul Syllable Bbemp |
| Versione Unicode | 2.0 |
| Unicode | U+BF00 |
| Blocco Unicode | |
| Categoria generale | Other Letter (Lo) |
| Codice CSS | \BF00 |
| Codice esadecimale | 0xBF00 |
| Codice HTML | 뼀 |
| LaTeX | \hangul{BF00} |
| Simbolo | 뼀 |
| Codifica URL (percentuale UTF-8) | %EB%BC%80 |
| Nome parlato / screen reader | Hangul Syllable Bbemp |
| UTF-8 | EB BC 80 |
| UTF-16 | BF00 |
| UTF-32 | 0000BF00 |
1\documentclass{article}2\usepackage{pifont}3\hangul{BF00}4\end{document}Puoi digitare il simbolo hangul syllable bbemp sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 48896 on Windows (numeric keypad with Num Lock), or insert via Character Map / Korean IME.
Edit → Emoji & Symbols, search "hangul syllable bbemp", or use Unicode Hex Input with BF00.
Ctrl + Shift + U, type bf00, 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-bbemp::before { content: "\BF00"; font-family: "Apple SD Gothic Neo", "Malgun Gothic", "Noto Sans KR", sans-serif; }1<span>뼀</span>La rappresentazione del simbolo Hangul Syllable Bbemp nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\uBF00' or String.fromCodePoint(48896) |
| Python | '\N{HANGUL SYLLABLE BBEMP}' or chr(48896) |
| Rust | '\u{BF00}' |
| C / C++ | UTF-8 source or wchar_t with U+BF00 |
| Go | string(rune(0xBF00)) |
| Ruby | "\u{BF00}" |