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