Latin Small Letter A With Circumflex And Acute

Shortcodes

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

Unicode
U+1EA5
HTML Code
ấ
HEX Code
ấ
CSS Code
\1EA5
JS/JSON
\u1EA5
Unix/C/PHP/JAVA
0x1EA5
URL-encode
%E1%BA%A5

Customize Latin Small Letter A With Circumflex And Acute

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

  

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

Insert in HTML

1. Direct symbol:
<span>ấ</span>
HTML Code:
<span>&#7845;</span>
HEX Code:
<span>&#x1EA5;</span>

Add with CSS

.latin-small-letter-a-with-circumflex-and-acute::before {
  content: '\\1EA5';
}

Set it in JavaScript

document.querySelector('.latin-small-letter-a-with-circumflex-and-acute').textContent = 'ấ';
copied