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