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