Latin Small Letter A With Circumflex And Dot Below

Shortcodes

Copy useful codes for latin small letter a with circumflex and dot below symbol ậ to use in websites, apps, blogs, and docs.

Unicode
U+1EAD
HTML Code
ậ
HEX Code
ậ
CSS Code
\1EAD
JS/JSON
\u1EAD
Unix/C/PHP/JAVA
0x1EAD
URL-encode
%E1%BA%AD

Customize Latin Small Letter A With Circumflex And Dot Below

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

  

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

Insert in HTML

1. Direct symbol:
<span>ậ</span>
HTML Code:
<span>&#7853;</span>
HEX Code:
<span>&#x1EAD;</span>

Add with CSS

.latin-small-letter-a-with-circumflex-and-dot-below::before {
  content: '\\1EAD';
}

Set it in JavaScript

document.querySelector('.latin-small-letter-a-with-circumflex-and-dot-below').textContent = 'ậ';
copied