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