Latin Small Letter O With Circumflex And Tilde

Shortcodes

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

Unicode
U+1ED7
HTML Code
ỗ
HEX Code
ỗ
CSS Code
\1ED7
JS/JSON
\u1ED7
Unix/C/PHP/JAVA
0x1ED7
URL-encode
%E1%BB%97

Customize Latin Small Letter O With Circumflex And Tilde

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

  

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

Insert in HTML

1. Direct symbol:
<span>ỗ</span>
HTML Code:
<span>&#7895;</span>
HEX Code:
<span>&#x1ED7;</span>

Add with CSS

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

Set it in JavaScript

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