Latin Small Letter O With Circumflex And Dot Below

Shortcodes

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

Unicode
U+1ED9
HTML Code
ộ
HEX Code
ộ
CSS Code
\1ED9
JS/JSON
\u1ED9
Unix/C/PHP/JAVA
0x1ED9
URL-encode
%E1%BB%99

Customize Latin Small Letter O With Circumflex And Dot Below

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

  

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

Insert in HTML

1. Direct symbol:
<span>ộ</span>
HTML Code:
<span>&#7897;</span>
HEX Code:
<span>&#x1ED9;</span>

Add with CSS

.latin-small-letter-o-with-circumflex-and-dot-below::before {
  content: '\\1ED9';
}

Set it in JavaScript

document.querySelector('.latin-small-letter-o-with-circumflex-and-dot-below').textContent = 'ộ';
copied