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