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