Modifier Letter Small O

Shortcodes

Copy useful codes for modifier letter small o symbol ᵒ to use in websites, apps, blogs, and docs.

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

Customize Modifier Letter Small O

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

  

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

Insert in HTML

1. Direct symbol:
<span>ᵒ</span>
HTML Code:
<span>&#7506;</span>
HEX Code:
<span>&#x1D52;</span>

Add with CSS

.modifier-letter-small-o::before {
  content: '\\1D52';
}

Set it in JavaScript

document.querySelector('.modifier-letter-small-o').textContent = 'ᵒ';
copied