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