Mathematical Double-struck Small Q

๐•ข

Shortcodes

Copy useful codes for mathematical double-struck small q symbol ๐•ข to use in websites, apps, blogs, and docs.

Unicode
U+1D562
HTML Code
𝕢
HEX Code
𝕢
CSS Code
\1D562
JS/JSON
\u1D562
Unix/C/PHP/JAVA
0x1D562
URL-encode
%F0%9D%95%A2

Customize Mathematical Double-struck Small Q

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

๐•ข
  

How to use Mathematical Double-struck Small Q Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>๐•ข</span>
HTML Code:
<span>&#120162;</span>
HEX Code:
<span>&#x1D562;</span>

Add with CSS

.mathematical-double-struck-small-q::before {
  content: '\\1D562';
}

Set it in JavaScript

document.querySelector('.mathematical-double-struck-small-q').textContent = '๐•ข';
copied