Latin Subscript Small Letter O

Shortcodes

Copy and paste codes for Latin Subscript Small Letter O symbol ₒ to use in your websites, apps, blogs, and more.

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

Customize Latin Subscript Small Letter O Symbol

Customize ₒ symbol as you like and download Latin Subscript Small Letter O as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.
 

How to add Latin Subscript Small Letter O symbol in HTML, CSS, and JS?

Insert ₒ Latin Subscript Small Letter O using HTML

1. Copy-paste Latin Subscript Small Letter O directly:
<span>ₒ</span>
2. HTML Decimal Code:
<span>&#8338;</span>
3. Hexadecimal Code:
<span>&#x2092;</span>
Preview:

Add Latin Subscript Small Letter O symbol with CSS

.latin-subscript-small-letter-o::before {
    content: '\\2092';
}
Preview: Latin Subscript Small Letter O

Latin Subscript Small Letter O JavaScript Code

1. Direct Symbol:
document.querySelector('.latin-subscript-small-letter-o').textContent = 'ₒ';
2. Unicode Escape for ₒ:
document.querySelector('.latin-subscript-small-letter-o').textContent = '\u2092';
Preview: