| Nombre del símbolo | Hangul Syllable Tu |
| Versión Unicode | 2.0 |
| Unicode | U+D22C |
| Bloque Unicode | |
| Categoría general | Other Letter (Lo) |
| Código CSS | \D22C |
| Código hexadecimal | 0xD22C |
| Código HTML | 투 |
| LaTeX | \hangul{D22C} |
| Símbolo | 투 |
| Codificación URL (porcentaje UTF-8) | %ED%88%AC |
| Nombre oral / lector de pantalla | Hangul Syllable Tu |
| UTF-8 | ED 88 AC |
| UTF-16 | D22C |
| UTF-32 | 0000D22C |
1\documentclass{article}2\usepackage{pifont}3\hangul{D22C}4\end{document}Puedes escribir el símbolo hangul syllable tu en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 53804 on Windows (numeric keypad with Num Lock), or insert via Character Map / Korean IME.
Edit → Emoji & Symbols, search "hangul syllable tu", or use Unicode Hex Input with D22C.
Ctrl + Shift + U, type d22c, 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-tu::before { content: "\D22C"; font-family: "Apple SD Gothic Neo", "Malgun Gothic", "Noto Sans KR", sans-serif; }1<span>투</span>La representación del símbolo Hangul Syllable Tu en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\uD22C' or String.fromCodePoint(53804) |
| Python | '\N{HANGUL SYLLABLE TU}' or chr(53804) |
| Rust | '\u{D22C}' |
| C / C++ | UTF-8 source or wchar_t with U+D22C |
| Go | string(rune(0xD22C)) |
| Ruby | "\u{D22C}" |