Latin Small Letter O With Circumflex And Grave

Shortcodes

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

Unicode
U+1ED3
HTML Code
ồ
HEX Code
ồ
CSS Code
\1ED3
JS/JSON
\u1ED3
Unix/C/PHP/JAVA
0x1ED3
URL-encode
%E1%BB%93

Customize Latin Small Letter O With Circumflex And Grave

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

  

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

Insert in HTML

1. Direct symbol:
<span>ồ</span>
HTML Code:
<span>&#7891;</span>
HEX Code:
<span>&#x1ED3;</span>

Add with CSS

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

Set it in JavaScript

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