Latin Small Letter A With Dot Above And Macron

ǡ

Shortcodes

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

Unicode
U+01E1
HTML Code
ǡ
HEX Code
ǡ
CSS Code
\01E1
JS/JSON
\u01E1
Unix/C/PHP/JAVA
0x1E1
URL-encode
%C7%A1

Customize Latin Small Letter A With Dot Above And Macron

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

ǡ
  

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

Insert in HTML

1. Direct symbol:
<span>ǡ</span>
HTML Code:
<span>&#481;</span>
HEX Code:
<span>&#x01E1;</span>

Add with CSS

.latin-small-letter-a-with-dot-above-and-macron::before {
  content: '\\01E1';
}

Set it in JavaScript

document.querySelector('.latin-small-letter-a-with-dot-above-and-macron').textContent = 'ǡ';
copied