Mathematical Sans-serif Bold Small Pi

๐ฟ

Shortcodes

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

Unicode
U+1D77F
HTML Code
𝝿
HEX Code
𝝿
CSS Code
\1D77F
JS/JSON
\u1D77F
Unix/C/PHP/JAVA
0x1D77F
URL-encode
%F0%9D%9D%BF

Customize Mathematical Sans-serif Bold Small Pi

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

๐ฟ
  

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

Insert in HTML

1. Direct symbol:
<span>๐ฟ</span>
HTML Code:
<span>&#120703;</span>
HEX Code:
<span>&#x1D77F;</span>

Add with CSS

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

Set it in JavaScript

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