Greek Capital Letter Alpha

Α

Shortcodes

Copy useful codes for greek capital letter alpha symbol Α to use in websites, apps, blogs, and docs.

Unicode
U+0391
HTML Code
Α
HTML Entity
Α
HEX Code
Α
CSS Code
\0391
JS/JSON
\u0391
Unix/C/PHP/JAVA
0x0391
URL-encode
%CE%91

Customize Greek Capital Letter Alpha

Customize Α, download it as SVG or PNG, or copy the generated HTML snippet.

Α
  

How to use Greek Capital Letter Alpha Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>Α</span>
HTML Code:
<span>&#913;</span>
HTML Entity:
<span>&Alpha;</span>
HEX Code:
<span>&#x391;</span>

Add with CSS

.greek-capital-letter-alpha::before {
  content: '\\0391';
}

Set it in JavaScript

document.querySelector('.greek-capital-letter-alpha').textContent = 'Α';
copied