Latin Capital Letter A With Macron

Ā

Shortcodes

Copy useful codes for latin capital letter a with macron symbol Ā to use in websites, apps, blogs, and docs.

Unicode
U+0100
HTML Code
Ā
HEX Code
Ā
CSS Code
\0100
JS/JSON
\u0100
Unix/C/PHP/JAVA
0x100
URL-encode
%C4%80

Customize Latin Capital Letter A With Macron

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

Ā
  

How to use Latin Capital Letter A With Macron Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>Ā</span>
HTML Code:
<span>&#256;</span>
HEX Code:
<span>&#x0100;</span>

Add with CSS

.latin-capital-letter-a-with-macron::before {
  content: '\\0100';
}

Set it in JavaScript

document.querySelector('.latin-capital-letter-a-with-macron').textContent = 'Ā';
copied