Latin Subscript Small Letter O

Shortcodes

Copy useful codes for latin subscript small letter o symbol ₒ to use in websites, apps, blogs, and docs.

Unicode
U+2092
HTML Code
ₒ
HEX Code
ₒ
CSS Code
\2092
JS/JSON
\u2092
Unix/C/PHP/JAVA
0x2092
URL-encode
%E2%82%92

Customize Latin Subscript Small Letter O

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

  

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

Insert in HTML

1. Direct symbol:
<span>ₒ</span>
HTML Code:
<span>&#8338;</span>
HEX Code:
<span>&#x2092;</span>

Add with CSS

.latin-subscript-small-letter-o::before {
  content: '\\2092';
}

Set it in JavaScript

document.querySelector('.latin-subscript-small-letter-o').textContent = 'ₒ';
copied