| Nome del simbolo | Hangul Syllable Pyamb |
| Versione Unicode | 2.0 |
| Unicode | U+D355 |
| Blocco Unicode | |
| Categoria generale | Other Letter (Lo) |
| Codice CSS | \D355 |
| Codice esadecimale | 0xD355 |
| Codice HTML | 퍕 |
| LaTeX | \hangul{D355} |
| Simbolo | 퍕 |
| Codifica URL (percentuale UTF-8) | %ED%8D%95 |
| Nome parlato / screen reader | Hangul Syllable Pyamb |
| UTF-8 | ED 8D 95 |
| UTF-16 | D355 |
| UTF-32 | 0000D355 |
1\documentclass{article}2\usepackage{pifont}3\hangul{D355}4\end{document}Puoi digitare il simbolo hangul syllable pyamb sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 54101 on Windows (numeric keypad with Num Lock), or insert via Character Map / Korean IME.
Edit → Emoji & Symbols, search "hangul syllable pyamb", or use Unicode Hex Input with D355.
Ctrl + Shift + U, type d355, 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-pyamb::before { content: "\D355"; font-family: "Apple SD Gothic Neo", "Malgun Gothic", "Noto Sans KR", sans-serif; }1<span>퍕</span>La rappresentazione del simbolo Hangul Syllable Pyamb nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\uD355' or String.fromCodePoint(54101) |
| Python | '\N{HANGUL SYLLABLE PYAMB}' or chr(54101) |
| Rust | '\u{D355}' |
| C / C++ | UTF-8 source or wchar_t with U+D355 |
| Go | string(rune(0xD355)) |
| Ruby | "\u{D355}" |