Latin Small Letter A With Circumflex And Grave

Shortcodes

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

Unicode
U+1EA7
HTML Code
ầ
HEX Code
ầ
CSS Code
\1EA7
JS/JSON
\u1EA7
Unix/C/PHP/JAVA
0x1EA7
URL-encode
%E1%BA%A7

Customize Latin Small Letter A With Circumflex And Grave

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

  

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

Insert in HTML

1. Direct symbol:
<span>ầ</span>
HTML Code:
<span>&#7847;</span>
HEX Code:
<span>&#x1EA7;</span>

Add with CSS

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

Set it in JavaScript

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