Mathematical Script Capital Q

๐’ฌ

Shortcodes

Copy useful codes for mathematical script capital q symbol ๐’ฌ to use in websites, apps, blogs, and docs.

Unicode
U+1D4AC
HTML Code
𝒬
HEX Code
𝒬
CSS Code
\1D4AC
JS/JSON
\u1D4AC
Unix/C/PHP/JAVA
0x1D4AC
URL-encode
%F0%9D%92%AC

Customize Mathematical Script Capital Q

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

๐’ฌ
  

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

Insert in HTML

1. Direct symbol:
<span>๐’ฌ</span>
HTML Code:
<span>&#119980;</span>
HEX Code:
<span>&#x1D4AC;</span>

Add with CSS

.mathematical-script-capital-q::before {
  content: '\\1D4AC';
}

Set it in JavaScript

document.querySelector('.mathematical-script-capital-q').textContent = '๐’ฌ';
copied