Latin Small Letter O With Caron

ǒ

Shortcodes

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

Unicode
U+01D2
HTML Code
ǒ
HEX Code
ǒ
CSS Code
\01D2
JS/JSON
\u01D2
Unix/C/PHP/JAVA
0x1D2
URL-encode
%C7%92

Customize Latin Small Letter O With Caron

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

ǒ
  

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

Insert in HTML

1. Direct symbol:
<span>ǒ</span>
HTML Code:
<span>&#466;</span>
HEX Code:
<span>&#x01D2;</span>

Add with CSS

.latin-small-letter-o-with-caron::before {
  content: '\\01D2';
}

Set it in JavaScript

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