| Nom du symbole | Hangul Syllable Ta |
| Version Unicode | 2.0 |
| Unicode | U+D0C0 |
| Bloc Unicode | |
| Catégorie générale | Other Letter (Lo) |
| Code CSS | \D0C0 |
| Code hexadécimal | 0xD0C0 |
| Code HTML | 타 |
| LaTeX | \hangul{D0C0} |
| Symbole | 타 |
| Encodage URL (pourcent UTF-8) | %ED%83%80 |
| Nom oral / lecteur d’écran | Hangul Syllable Ta |
| UTF-8 | ED 83 80 |
| UTF-16 | D0C0 |
| UTF-32 | 0000D0C0 |
1\documentclass{article}2\usepackage{pifont}3\hangul{D0C0}4\end{document}Vous pouvez saisir le symbole hangul syllable ta sur la plupart des appareils modernes avec les méthodes suivantes :
Alt + 53440 on Windows (numeric keypad with Num Lock), or insert via Character Map / Korean IME.
Edit → Emoji & Symbols, search "hangul syllable ta", or use Unicode Hex Input with D0C0.
Ctrl + Shift + U, type d0c0, 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-ta::before { content: "\D0C0"; font-family: "Apple SD Gothic Neo", "Malgun Gothic", "Noto Sans KR", sans-serif; }1<span>타</span>La représentation du symbole Hangul Syllable Ta dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| JavaScript / TypeScript | '\uD0C0' or String.fromCodePoint(53440) |
| Python | '\N{HANGUL SYLLABLE TA}' or chr(53440) |
| Rust | '\u{D0C0}' |
| C / C++ | UTF-8 source or wchar_t with U+D0C0 |
| Go | string(rune(0xD0C0)) |
| Ruby | "\u{D0C0}" |