| Symboolnaam | Hangul Letter A |
| Unicode-versie | 1.1 |
| Unicode | U+314F |
| Unicode-blok | |
| Algemene categorie | Other Letter (Lo) |
| CSS-code | \314F |
| Hexadecimale code | 0x314F |
| HTML-code | ㅏ |
| LaTeX | \hangul{314F} |
| Symbool | ㅏ |
| URL-codering (UTF-8 procent) | %E3%85%8F |
| Uitgesproken naam / schermlezer | 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}Je kunt het hangul letter a-symbool op de meeste moderne apparaten typen met de volgende methoden:
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>De weergave van het Hangul Letter A-symbool in verschillende programmeertalen vind je in onderstaande tabel:
| Taal | Weergave |
|---|---|
| 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}" |