Latin Small Letter O With Grave

ò

Shortcodes

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

Unicode
U+00F2
Alt Code
242
HTML Code
ò
HTML Entity
ò
HEX Code
ò
CSS Code
\00F2
JS/JSON
\u00F2
Unix/C/PHP/JAVA
0xF2
URL-encode
%C3%B2

Customize Latin Small Letter O With Grave

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

ò
  

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

Insert in HTML

1. Direct symbol:
<span>ò</span>
HTML Code:
<span>&#242;</span>
HTML Entity:
<span>&ograve;</span>
HEX Code:
<span>&#x00F2;</span>

Add with CSS

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

Set it in JavaScript

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