Mathematical Bold Script Small O

๐“ธ

Shortcodes

Copy useful codes for mathematical bold script small o symbol ๐“ธ to use in websites, apps, blogs, and docs.

Unicode
U+1D4F8
HTML Code
𝓸
HEX Code
𝓸
CSS Code
\1D4F8
JS/JSON
\u1D4F8
Unix/C/PHP/JAVA
0x1D4F8
URL-encode
%F0%9D%93%B8

Customize Mathematical Bold Script Small O

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

๐“ธ
  

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

Insert in HTML

1. Direct symbol:
<span>๐“ธ</span>
HTML Code:
<span>&#120056;</span>
HEX Code:
<span>&#x1D4F8;</span>

Add with CSS

.mathematical-bold-script-small-o::before {
  content: '\\1D4F8';
}

Set it in JavaScript

document.querySelector('.mathematical-bold-script-small-o').textContent = '๐“ธ';
copied