Latin Small Letter A With Dot Below

Shortcodes

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

Unicode
U+1EA1
HTML Code
ạ
HEX Code
ạ
CSS Code
\1EA1
JS/JSON
\u1EA1
Unix/C/PHP/JAVA
0x1EA1
URL-encode
%E1%BA%A1

Customize Latin Small Letter A With Dot Below

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

  

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

Insert in HTML

1. Direct symbol:
<span>ạ</span>
HTML Code:
<span>&#7841;</span>
HEX Code:
<span>&#x1EA1;</span>

Add with CSS

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

Set it in JavaScript

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