| Nombre del símbolo | Greek Capital Letter Alpha |
| Versión Unicode | 1.1 |
| Unicode | U+0391 |
| Bloque Unicode | |
| Categoría general | Uppercase Letter (Lu) |
| Código CSS | \0391 |
| Código hexadecimal | 0x0391 |
| Código HTML | Α |
| LaTeX | A |
| Símbolo | Α |
| Codificación URL (porcentaje UTF-8) | %CE%91 |
| Nombre oral / lector de pantalla | Greek Capital Letter Alpha |
| UTF-8 | CE 91 |
| UTF-16 | 0391 |
| UTF-32 | 00000391 |
1\documentclass{article}2\usepackage{pifont}3A4\end{document}Puedes escribir el símbolo greek capital letter alpha en la mayoría de dispositivos modernos con los siguientes métodos:
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 representación del símbolo Greek Capital Letter Alpha en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| 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}" |