| Nombre del símbolo | Hangul Syllable Ho |
| Versión Unicode | 2.0 |
| Unicode | U+D638 |
| Bloque Unicode | |
| Categoría general | Other Letter (Lo) |
| Código CSS | \D638 |
| Código hexadecimal | 0xD638 |
| Código HTML | 호 |
| LaTeX | \hangul{D638} |
| Símbolo | 호 |
| Codificación URL (porcentaje UTF-8) | %ED%98%B8 |
| Nombre oral / lector de pantalla | 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}Puedes escribir el símbolo hangul syllable ho en la mayoría de dispositivos modernos con los siguientes métodos:
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>La representación del símbolo Hangul Syllable Ho en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| 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}" |