Latin Small Letter A With Macron

ā

Shortcodes

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

Unicode
U+0101
HTML Code
ā
HEX Code
ā
CSS Code
\0101
JS/JSON
\u0101
Unix/C/PHP/JAVA
0x101
URL-encode
%C4%81

Customize Latin Small Letter A With Macron

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

ā
  

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

Insert in HTML

1. Direct symbol:
<span>ā</span>
HTML Code:
<span>&#257;</span>
HEX Code:
<span>&#x0101;</span>

Add with CSS

.latin-small-letter-a-with-macron::before {
  content: '\\0101';
}

Set it in JavaScript

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