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