Latin Small Letter O With Hook Above

Shortcodes

Copy useful codes for latin small letter o with hook above symbol ỏ to use in websites, apps, blogs, and docs.

Unicode
U+1ECF
HTML Code
ỏ
HEX Code
ỏ
CSS Code
\1ECF
JS/JSON
\u1ECF
Unix/C/PHP/JAVA
0x1ECF
URL-encode
%E1%BB%8F

Customize Latin Small Letter O With Hook Above

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

  

How to use Latin Small Letter O With Hook Above Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>ỏ</span>
HTML Code:
<span>&#7887;</span>
HEX Code:
<span>&#x1ECF;</span>

Add with CSS

.latin-small-letter-o-with-hook-above::before {
  content: '\\1ECF';
}

Set it in JavaScript

document.querySelector('.latin-small-letter-o-with-hook-above').textContent = 'ỏ';
copied