Latin Small Letter O With Circumflex And Hook Above

Shortcodes

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

Unicode
U+1ED5
HTML Code
ổ
HEX Code
ổ
CSS Code
\1ED5
JS/JSON
\u1ED5
Unix/C/PHP/JAVA
0x1ED5
URL-encode
%E1%BB%95

Customize Latin Small Letter O With Circumflex And Hook Above

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

  

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

Insert in HTML

1. Direct symbol:
<span>ổ</span>
HTML Code:
<span>&#7893;</span>
HEX Code:
<span>&#x1ED5;</span>

Add with CSS

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

Set it in JavaScript

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