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