Latin Capital Letter O With Grave

Ò

Shortcodes

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

Unicode
U+00D2
Alt Code
210
HTML Code
Ò
HTML Entity
Ò
HEX Code
Ò
CSS Code
\00D2
JS/JSON
\u00D2
Unix/C/PHP/JAVA
0xD2
URL-encode
%C3%92

Customize Latin Capital Letter O With Grave

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

Ò
  

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

Insert in HTML

1. Direct symbol:
<span>Ò</span>
HTML Code:
<span>&#210;</span>
HTML Entity:
<span>&Ograve;</span>
HEX Code:
<span>&#x00D2;</span>

Add with CSS

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

Set it in JavaScript

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