Mathematical Sans-serif Bold Capital Pi

๐ฅ

Shortcodes

Copy useful codes for mathematical sans-serif bold capital pi symbol ๐ฅ to use in websites, apps, blogs, and docs.

Unicode
U+1D765
HTML Code
𝝥
HEX Code
𝝥
CSS Code
\1D765
JS/JSON
\u1D765
Unix/C/PHP/JAVA
0x1D765
URL-encode
%F0%9D%9D%A5

Customize Mathematical Sans-serif Bold Capital Pi

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

๐ฅ
  

How to use Mathematical Sans-serif Bold Capital Pi Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>๐ฅ</span>
HTML Code:
<span>&#120677;</span>
HEX Code:
<span>&#x1D765;</span>

Add with CSS

.mathematical-sans-serif-bold-capital-pi::before {
  content: '\\1D765';
}

Set it in JavaScript

document.querySelector('.mathematical-sans-serif-bold-capital-pi').textContent = '๐ฅ';
copied