Double-struck Small Pi Symbol

Shortcodes

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

Unicode
U+213C
HTML Code
ℼ
HEX Code
ℼ
CSS Code
\213C
JS/JSON
\u213C
Unix/C/PHP/JAVA
0x213C
URL-encode
%E2%85%BC

Customize Double-struck Small Pi Symbol

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

  

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

Insert in HTML

1. Direct symbol:
<span>ℼ</span>
HTML Code:
<span>&#8508;</span>
HEX Code:
<span>&#x213C;</span>

Add with CSS

.double-struck-small-pi::before {
  content: '\\213C';
}

Set it in JavaScript

document.querySelector('.double-struck-small-pi').textContent = 'ℼ';
copied