Latin Small Letter O With Horn And Tilde

Shortcodes

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

Unicode
U+1EE1
HTML Code
ỡ
HEX Code
ỡ
CSS Code
\1EE1
JS/JSON
\u1EE1
Unix/C/PHP/JAVA
0x1EE1
URL-encode
%E1%BB%A1

Customize Latin Small Letter O With Horn And Tilde

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

  

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

Insert in HTML

1. Direct symbol:
<span>ỡ</span>
HTML Code:
<span>&#7905;</span>
HEX Code:
<span>&#x1EE1;</span>

Add with CSS

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

Set it in JavaScript

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