| Nome del simbolo | Greek Capital Letter Alpha |
| Versione Unicode | 1.1 |
| Unicode | U+0391 |
| Blocco Unicode | |
| Categoria generale | Uppercase Letter (Lu) |
| Codice CSS | \0391 |
| Codice esadecimale | 0x0391 |
| Codice HTML | Α |
| LaTeX | A |
| Simbolo | Α |
| Codifica URL (percentuale UTF-8) | %CE%91 |
| Nome parlato / screen reader | Greek Capital Letter Alpha |
| UTF-8 | CE 91 |
| UTF-16 | 0391 |
| UTF-32 | 00000391 |
1\documentclass{article}2\usepackage{pifont}3A4\end{document}Puoi digitare il simbolo greek capital letter alpha sulla maggior parte dei dispositivi moderni con i seguenti metodi:
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>La rappresentazione del simbolo Greek Capital Letter Alpha nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| 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}" |