Latin Small Letter O With Double Grave

ȍ

Shortcodes

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

Unicode
U+020D
HTML Code
ȍ
HEX Code
ȍ
CSS Code
\020D
JS/JSON
\u020D
Unix/C/PHP/JAVA
0x20D
URL-encode
%C8%8D

Customize Latin Small Letter O With Double Grave

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

ȍ
  

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

Insert in HTML

1. Direct symbol:
<span>ȍ</span>
HTML Code:
<span>&#525;</span>
HEX Code:
<span>&#x020D;</span>

Add with CSS

.latin-small-letter-o-with-double-grave::before {
  content: '\\020D';
}

Set it in JavaScript

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