Latin Small Letter O With Tilde

õ

Shortcodes

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

Unicode
U+00F5
Alt Code
245
HTML Code
õ
HTML Entity
õ
HEX Code
õ
CSS Code
\00F5
JS/JSON
\u00F5
Unix/C/PHP/JAVA
0xF5
URL-encode
%C3%B5

Customize Latin Small Letter O With Tilde

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

õ
  

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

Insert in HTML

1. Direct symbol:
<span>õ</span>
HTML Code:
<span>&#245;</span>
HTML Entity:
<span>&otilde;</span>
HEX Code:
<span>&#x00F5;</span>

Add with CSS

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

Set it in JavaScript

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