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