Modifier Letter Small O

Shortcodes

Copy and paste codes for Modifier Letter Small O symbol ᵒ to use in your websites, apps, blogs, and more.

Unicode
U+1D52
HTML Code
ᵒ
HEX Code
ᵒ
CSS Code
\1D52
JS/JSON
\u1D52
Unix/C/PHP/JAVA
0x1D52
URL-encode
%E1%B5%92
copied

Customize Modifier Letter Small O Symbol

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

Insert ᵒ Modifier Letter Small O using HTML

1. Copy-paste Modifier Letter Small O directly:
<span>ᵒ</span>
2. HTML Decimal Code:
<span>&#7506;</span>
3. Hexadecimal Code:
<span>&#x1D52;</span>
Preview:

Add Modifier Letter Small O symbol with CSS

.modifier-letter-small-o::before {
    content: '\\1D52';
}
Preview: Modifier Letter Small O

Modifier Letter Small O JavaScript Code

1. Direct Symbol:
document.querySelector('.modifier-letter-small-o').textContent = 'ᵒ';
2. Unicode Escape for ᵒ:
document.querySelector('.modifier-letter-small-o').textContent = '\u1D52';
Preview: