Mathematical Script Capital P

๐’ซ

Shortcodes

Copy useful codes for mathematical script capital p symbol ๐’ซ to use in websites, apps, blogs, and docs.

Unicode
U+1D4AB
HTML Code
𝒫
HEX Code
𝒫
CSS Code
\1D4AB
JS/JSON
\u1D4AB
Unix/C/PHP/JAVA
0x1D4AB
URL-encode
%F0%9D%92%AB

Customize Mathematical Script Capital P

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

๐’ซ
  

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

Insert in HTML

1. Direct symbol:
<span>๐’ซ</span>
HTML Code:
<span>&#119979;</span>
HEX Code:
<span>&#x1D4AB;</span>

Add with CSS

.mathematical-script-capital-p::before {
  content: '\\1D4AB';
}

Set it in JavaScript

document.querySelector('.mathematical-script-capital-p').textContent = '๐’ซ';
copied