| 記号名 | Hangul Letter A |
| Unicodeバージョン | 1.1 |
| Unicode | U+314F |
| Unicodeブロック | |
| 一般カテゴリ | Other Letter (Lo) |
| CSSコード | \314F |
| 16進コード | 0x314F |
| HTMLコード | ㅏ |
| LaTeX | \hangul{314F} |
| 記号 | ㅏ |
| URLエンコード(UTF-8パーセント) | %E3%85%8F |
| 読み上げ名 / スクリーンリーダー | 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}以下の方法でほとんどの最新デバイスでhangul letter a記号を入力できます:
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>各プログラミング言語におけるHangul Letter A記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| 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}" |