| 記号名 | Hangul Syllable Beud |
| Unicodeバージョン | 2.0 |
| Unicode | U+BE13 |
| Unicodeブロック | |
| 一般カテゴリ | Other Letter (Lo) |
| CSSコード | \BE13 |
| 16進コード | 0xBE13 |
| HTMLコード | 븓 |
| LaTeX | \hangul{BE13} |
| 記号 | 븓 |
| URLエンコード(UTF-8パーセント) | %EB%B8%93 |
| 読み上げ名 / スクリーンリーダー | Hangul Syllable Beud |
| UTF-8 | EB B8 93 |
| UTF-16 | BE13 |
| UTF-32 | 0000BE13 |
1\documentclass{article}2\usepackage{pifont}3\hangul{BE13}4\end{document}以下の方法でほとんどの最新デバイスでhangul syllable beud記号を入力できます:
Alt + 48659 on Windows (numeric keypad with Num Lock), or insert via Character Map / Korean IME.
Edit → Emoji & Symbols, search "hangul syllable beud", or use Unicode Hex Input with BE13.
Ctrl + Shift + U, type be13, 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-beud::before { content: "\BE13"; font-family: "Apple SD Gothic Neo", "Malgun Gothic", "Noto Sans KR", sans-serif; }1<span>븓</span>各プログラミング言語におけるHangul Syllable Beud記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\uBE13' or String.fromCodePoint(48659) |
| Python | '\N{HANGUL SYLLABLE BEUD}' or chr(48659) |
| Rust | '\u{BE13}' |
| C / C++ | UTF-8 source or wchar_t with U+BE13 |
| Go | string(rune(0xBE13)) |
| Ruby | "\u{BE13}" |