Latin Small Letter A With Breve And Grave

Shortcodes

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

Unicode
U+1EB1
HTML Code
ằ
HEX Code
ằ
CSS Code
\1EB1
JS/JSON
\u1EB1
Unix/C/PHP/JAVA
0x1EB1
URL-encode
%E1%BA%B1

Customize Latin Small Letter A With Breve And Grave

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

  

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

Insert in HTML

1. Direct symbol:
<span>ằ</span>
HTML Code:
<span>&#7857;</span>
HEX Code:
<span>&#x1EB1;</span>

Add with CSS

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

Set it in JavaScript

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