| Nombre del símbolo | Hangul Letter A |
| Versión Unicode | 1.1 |
| Unicode | U+314F |
| Bloque Unicode | |
| Categoría general | Other Letter (Lo) |
| Código CSS | \314F |
| Código hexadecimal | 0x314F |
| Código HTML | ㅏ |
| LaTeX | \hangul{314F} |
| Símbolo | ㅏ |
| Codificación URL (porcentaje UTF-8) | %E3%85%8F |
| Nombre oral / lector de pantalla | 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}Puedes escribir el símbolo hangul letter a en la mayoría de dispositivos modernos con los siguientes métodos:
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 representación del símbolo Hangul Letter A en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| 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}" |