| 記号名 | Greek Capital Letter Alpha |
| Unicodeバージョン | 1.1 |
| Unicode | U+0391 |
| Unicodeブロック | |
| 一般カテゴリ | Uppercase Letter (Lu) |
| CSSコード | \0391 |
| 16進コード | 0x0391 |
| HTMLコード | Α |
| LaTeX | A |
| 記号 | Α |
| URLエンコード(UTF-8パーセント) | %CE%91 |
| 読み上げ名 / スクリーンリーダー | Greek Capital Letter Alpha |
| UTF-8 | CE 91 |
| UTF-16 | 0391 |
| UTF-32 | 00000391 |
1\documentclass{article}2\usepackage{pifont}3A4\end{document}以下の方法でほとんどの最新デバイスでgreek capital letter alpha記号を入力できます:
Alt + 913 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "greek capital letter alpha", or use Unicode Hex Input with 0391.
Ctrl + Shift + U, type 0391, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the Greek keyboard.
Paste from this page or use a keyboard with Greek letter support.
1span.capital-alpha::before { content: "\0391"; font-family: "Times New Roman", "Palatino Linotype", "DejaVu Serif", serif; }1<span>Α</span>各プログラミング言語におけるGreek Capital Letter Alpha記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u0391' or String.fromCodePoint(913) |
| Python | '\N{GREEK CAPITAL LETTER ALPHA}' or chr(913) |
| Rust | '\u{0391}' |
| C / C++ | UTF-8 source or wchar_t with U+0391 |
| Go | string(rune(0x0391)) |
| Ruby | "\u{0391}" |