Latin Small Letter A With Double Grave

ȁ

Shortcodes

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

Unicode
U+0201
HTML Code
ȁ
HEX Code
ȁ
CSS Code
\0201
JS/JSON
\u0201
Unix/C/PHP/JAVA
0x201
URL-encode
%C8%81

Customize Latin Small Letter A With Double Grave

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

ȁ
  

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

Insert in HTML

1. Direct symbol:
<span>ȁ</span>
HTML Code:
<span>&#513;</span>
HEX Code:
<span>&#x0201;</span>

Add with CSS

.latin-small-letter-a-with-double-grave::before {
  content: '\\0201';
}

Set it in JavaScript

document.querySelector('.latin-small-letter-a-with-double-grave').textContent = 'ȁ';
copied