Latin Small Letter O With Dot Below

Shortcodes

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

Unicode
U+1ECD
HTML Code
ọ
HEX Code
ọ
CSS Code
\1ECD
JS/JSON
\u1ECD
Unix/C/PHP/JAVA
0x1ECD
URL-encode
%E1%BB%8D

Customize Latin Small Letter O With Dot Below

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

  

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

Insert in HTML

1. Direct symbol:
<span>ọ</span>
HTML Code:
<span>&#7885;</span>
HEX Code:
<span>&#x1ECD;</span>

Add with CSS

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

Set it in JavaScript

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