| Symbol Name | Hangul Syllable Ho |
| Unicode Version | 2.0 |
| Unicode | U+D638 |
| Unicode block | |
| General category | Other Letter (Lo) |
| CSS Code | \D638 |
| Hex Code | 0xD638 |
| HTML Code | 호 |
| LaTeX | \hangul{D638} |
| Symbol | 호 |
| URL encode (UTF-8 percent) | %ED%98%B8 |
| Spoken / screen reader name | Hangul Syllable Ho |
| UTF-8 | ED 98 B8 |
| UTF-16 | D638 |
| UTF-32 | 0000D638 |
1\documentclass{article}2\usepackage{pifont}3\hangul{D638}4\end{document}You can type the hangul syllable ho symbol on most modern devices with the help of following methods:
Alt + 54840 on Windows (numeric keypad with Num Lock), or insert via Character Map / Korean IME.
Edit → Emoji & Symbols, search "hangul syllable ho", or use Unicode Hex Input with D638.
Ctrl + Shift + U, type d638, 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-ho::before { content: "\D638"; font-family: "Apple SD Gothic Neo", "Malgun Gothic", "Noto Sans KR", sans-serif; }1<span>호</span>Hangul Syllable Ho symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| JavaScript / TypeScript | '\uD638' or String.fromCodePoint(54840) |
| Python | '\N{HANGUL SYLLABLE HO}' or chr(54840) |
| Rust | '\u{D638}' |
| C / C++ | UTF-8 source or wchar_t with U+D638 |
| Go | string(rune(0xD638)) |
| Ruby | "\u{D638}" |