Mathematical Fraktur Small O

๐”ฌ

Shortcodes

Copy useful codes for mathematical fraktur small o symbol ๐”ฌ to use in websites, apps, blogs, and docs.

Unicode
U+1D52C
HTML Code
𝔬
HEX Code
𝔬
CSS Code
\1D52C
JS/JSON
\u1D52C
Unix/C/PHP/JAVA
0x1D52C
URL-encode
%F0%9D%94%AC

Customize Mathematical Fraktur Small O

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

๐”ฌ
  

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

Insert in HTML

1. Direct symbol:
<span>๐”ฌ</span>
HTML Code:
<span>&#120108;</span>
HEX Code:
<span>&#x1D52C;</span>

Add with CSS

.mathematical-fraktur-small-o::before {
  content: '\\1D52C';
}

Set it in JavaScript

document.querySelector('.mathematical-fraktur-small-o').textContent = '๐”ฌ';
copied