Mathematical Bold Small O

๐จ

Shortcodes

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

Unicode
U+1D428
HTML Code
𝐨
HEX Code
𝐨
CSS Code
\1D428
JS/JSON
\u1D428
Unix/C/PHP/JAVA
0x1D428
URL-encode
%F0%9D%90%A8

Customize Mathematical Bold Small O

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

๐จ
  

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

Insert in HTML

1. Direct symbol:
<span>๐จ</span>
HTML Code:
<span>&#119848;</span>
HEX Code:
<span>&#x1D428;</span>

Add with CSS

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

Set it in JavaScript

document.querySelector('.mathematical-bold-small-o').textContent = '๐จ';
copied