Mathematical Bold Small Q

๐ช

Shortcodes

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

Unicode
U+1D42A
HTML Code
𝐪
HEX Code
𝐪
CSS Code
\1D42A
JS/JSON
\u1D42A
Unix/C/PHP/JAVA
0x1D42A
URL-encode
%F0%9D%90%AA

Customize Mathematical Bold Small Q

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

๐ช
  

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

Insert in HTML

1. Direct symbol:
<span>๐ช</span>
HTML Code:
<span>&#119850;</span>
HEX Code:
<span>&#x1D42A;</span>

Add with CSS

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

Set it in JavaScript

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