Mathematical Bold Small P

๐ฉ

Shortcodes

Copy useful codes for mathematical bold small p symbol ๐ฉ to use in websites, apps, blogs, and docs.

Unicode
U+1D429
HTML Code
𝐩
HEX Code
𝐩
CSS Code
\1D429
JS/JSON
\u1D429
Unix/C/PHP/JAVA
0x1D429
URL-encode
%F0%9D%90%A9

Customize Mathematical Bold Small P

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

๐ฉ
  

How to use Mathematical Bold Small P Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>๐ฉ</span>
HTML Code:
<span>&#119849;</span>
HEX Code:
<span>&#x1D429;</span>

Add with CSS

.mathematical-bold-small-p::before {
  content: '\\1D429';
}

Set it in JavaScript

document.querySelector('.mathematical-bold-small-p').textContent = '๐ฉ';
copied