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