| Nombre del símbolo | Latin Capital Letter A |
| Versión Unicode | 1.1 |
| Unicode | U+0041 |
| Bloque Unicode | |
| Categoría general | Uppercase Letter (Lu) |
| Código CSS | \0041 |
| Código hexadecimal | 0x0041 |
| Código HTML | A |
| LaTeX | A |
| Símbolo | A |
| Codificación URL (porcentaje UTF-8) | %41 |
| Nombre oral / lector de pantalla | Latin Capital Letter A |
| UTF-8 | 41 |
| UTF-16 | 0041 |
| UTF-32 | 00000041 |
1\documentclass{article}2\usepackage{pifont}3A4\end{document}Puedes escribir el símbolo latin capital letter a en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 65 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "latin capital letter a", or use Unicode Hex Input with 0041.
Ctrl + Shift + U, type 0041, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the Latin keyboard.
Paste from this page or use a keyboard with Latin letter support.
1span.capital-a::before { content: "\0041"; font-family: "Charis SIL", "Doulos SIL", "DejaVu Serif", "Times New Roman", serif; }1<span>A</span>La representación del símbolo Latin Capital Letter A en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\u0041' or String.fromCodePoint(65) |
| Python | '\N{LATIN CAPITAL LETTER A}' or chr(65) |
| Rust | '\u{0041}' |
| C / C++ | UTF-8 source or wchar_t with U+0041 |
| Go | string(rune(0x0041)) |
| Ruby | "\u{0041}" |