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