Latin Small Letter A With Breve And Acute

Shortcodes

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

Unicode
U+1EAF
HTML Code
ắ
HEX Code
ắ
CSS Code
\1EAF
JS/JSON
\u1EAF
Unix/C/PHP/JAVA
0x1EAF
URL-encode
%E1%BA%AF

Customize Latin Small Letter A With Breve And Acute

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

  

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

Insert in HTML

1. Direct symbol:
<span>ắ</span>
HTML Code:
<span>&#7855;</span>
HEX Code:
<span>&#x1EAF;</span>

Add with CSS

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

Set it in JavaScript

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