Latin Letter Small Capital O

Shortcodes

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

Unicode
U+1D0F
HTML Code
ᴏ
HEX Code
ᴏ
CSS Code
\1D0F
JS/JSON
\u1D0F
Unix/C/PHP/JAVA
0x1D0F
URL-encode
%E1%B4%8F
copied

Customize Latin Letter Small Capital O Symbol

Customize ᴏ symbol as you like and download Latin Letter Small Capital 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 Letter Small Capital O symbol in HTML, CSS, and JS?

Insert ᴏ Latin Letter Small Capital O using HTML

1. Copy-paste Latin Letter Small Capital O directly:
<span>ᴏ</span>
2. HTML Decimal Code:
<span>&#7439;</span>
3. Hexadecimal Code:
<span>&#x1D0F;</span>
Preview:

Add Latin Letter Small Capital O symbol with CSS

.latin-letter-small-capital-o::before {
    content: '\\1D0F';
}
Preview: Latin Letter Small Capital O

Latin Letter Small Capital O JavaScript Code

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