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