Double-struck Capital Pi Symbol

Shortcodes

Copy useful codes for double-struck capital pi symbol ℿ to use in websites, apps, blogs, and docs.

Unicode
U+213F
HTML Code
ℿ
HEX Code
ℿ
CSS Code
\213F
JS/JSON
\u213F
Unix/C/PHP/JAVA
0x213F
URL-encode
%E2%85%BF

Customize Double-struck Capital Pi Symbol

Customize ℿ, download it as SVG or PNG, or copy the generated HTML snippet.

  

How to use Double-struck Capital Pi Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>ℿ</span>
HTML Code:
<span>&#8511;</span>
HEX Code:
<span>&#x213F;</span>

Add with CSS

.double-struck-capital-pi::before {
  content: '\\213F';
}

Set it in JavaScript

document.querySelector('.double-struck-capital-pi').textContent = 'ℿ';
copied