Mathematical Italic Small O

๐‘œ

Shortcodes

Copy useful codes for mathematical italic small o symbol ๐‘œ to use in websites, apps, blogs, and docs.

Unicode
U+1D45C
HTML Code
𝑜
HEX Code
𝑜
CSS Code
\1D45C
JS/JSON
\u1D45C
Unix/C/PHP/JAVA
0x1D45C
URL-encode
%F0%9D%91%9C

Customize Mathematical Italic Small O

Customize ๐‘œ, download it as SVG or PNG, or copy the generated HTML snippet.

๐‘œ
  

How to use Mathematical Italic Small O Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>๐‘œ</span>
HTML Code:
<span>&#119900;</span>
HEX Code:
<span>&#x1D45C;</span>

Add with CSS

.mathematical-italic-small-o::before {
  content: '\\1D45C';
}

Set it in JavaScript

document.querySelector('.mathematical-italic-small-o').textContent = '๐‘œ';
copied