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