Latin Capital Letter O With Tilde

Õ

Shortcodes

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

Unicode
U+00D5
Alt Code
213
HTML Code
Õ
HTML Entity
Õ
HEX Code
Õ
CSS Code
\00D5
JS/JSON
\u00D5
Unix/C/PHP/JAVA
0xD5
URL-encode
%C3%95

Customize Latin Capital Letter O With Tilde

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

Õ
  

How to use Latin Capital Letter O With Tilde Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>Õ</span>
HTML Code:
<span>&#213;</span>
HTML Entity:
<span>&Otilde;</span>
HEX Code:
<span>&#x00D5;</span>

Add with CSS

.latin-capital-letter-o-with-tilde::before {
  content: '\\00D5';
}

Set it in JavaScript

document.querySelector('.latin-capital-letter-o-with-tilde').textContent = 'Õ';
copied