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