Mathematical Bold Script Small P

๐“น

Shortcodes

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

Unicode
U+1D4F9
HTML Code
𝓹
HEX Code
𝓹
CSS Code
\1D4F9
JS/JSON
\u1D4F9
Unix/C/PHP/JAVA
0x1D4F9
URL-encode
%F0%9D%93%B9

Customize Mathematical Bold Script Small P

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

๐“น
  

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

Insert in HTML

1. Direct symbol:
<span>๐“น</span>
HTML Code:
<span>&#120057;</span>
HEX Code:
<span>&#x1D4F9;</span>

Add with CSS

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

Set it in JavaScript

document.querySelector('.mathematical-bold-script-small-p').textContent = '๐“น';
copied