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