Latin Small Letter A With Ring Above And Acute

ǻ

Shortcodes

Copy useful codes for latin small letter a with ring above and acute symbol ǻ to use in websites, apps, blogs, and docs.

Unicode
U+01FB
HTML Code
ǻ
HEX Code
ǻ
CSS Code
\01FB
JS/JSON
\u01FB
Unix/C/PHP/JAVA
0x1FB
URL-encode
%C7%BB

Customize Latin Small Letter A With Ring Above And Acute

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

ǻ
  

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

Insert in HTML

1. Direct symbol:
<span>ǻ</span>
HTML Code:
<span>&#507;</span>
HEX Code:
<span>&#x01FB;</span>

Add with CSS

.latin-small-letter-a-with-ring-above-and-acute::before {
  content: '\\01FB';
}

Set it in JavaScript

document.querySelector('.latin-small-letter-a-with-ring-above-and-acute').textContent = 'ǻ';
copied