Mathematical Bold Script Small Q

๐“บ

Shortcodes

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

Unicode
U+1D4FA
HTML Code
𝓺
HEX Code
𝓺
CSS Code
\1D4FA
JS/JSON
\u1D4FA
Unix/C/PHP/JAVA
0x1D4FA
URL-encode
%F0%9D%93%BA

Customize Mathematical Bold Script Small Q

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

๐“บ
  

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

Insert in HTML

1. Direct symbol:
<span>๐“บ</span>
HTML Code:
<span>&#120058;</span>
HEX Code:
<span>&#x1D4FA;</span>

Add with CSS

.mathematical-bold-script-small-q::before {
  content: '\\1D4FA';
}

Set it in JavaScript

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