Latin Small Letter A With Diaeresis And Macron

ǟ

Shortcodes

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

Unicode
U+01DF
HTML Code
ǟ
HEX Code
ǟ
CSS Code
\01DF
JS/JSON
\u01DF
Unix/C/PHP/JAVA
0x1DF
URL-encode
%C7%9F

Customize Latin Small Letter A With Diaeresis And Macron

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

ǟ
  

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

Insert in HTML

1. Direct symbol:
<span>ǟ</span>
HTML Code:
<span>&#479;</span>
HEX Code:
<span>&#x01DF;</span>

Add with CSS

.latin-small-letter-a-with-diaeresis-and-macron::before {
  content: '\\01DF';
}

Set it in JavaScript

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