Mathematical Double-struck Small P

๐•ก

Shortcodes

Copy useful codes for mathematical double-struck small p symbol ๐•ก to use in websites, apps, blogs, and docs.

Unicode
U+1D561
HTML Code
𝕡
HEX Code
𝕡
CSS Code
\1D561
JS/JSON
\u1D561
Unix/C/PHP/JAVA
0x1D561
URL-encode
%F0%9D%95%A1

Customize Mathematical Double-struck Small P

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

๐•ก
  

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

Insert in HTML

1. Direct symbol:
<span>๐•ก</span>
HTML Code:
<span>&#120161;</span>
HEX Code:
<span>&#x1D561;</span>

Add with CSS

.mathematical-double-struck-small-p::before {
  content: '\\1D561';
}

Set it in JavaScript

document.querySelector('.mathematical-double-struck-small-p').textContent = '๐•ก';
copied