Mathematical Fraktur Small P

๐”ญ

Shortcodes

Copy useful codes for mathematical fraktur small p symbol ๐”ญ to use in websites, apps, blogs, and docs.

Unicode
U+1D52D
HTML Code
𝔭
HEX Code
𝔭
CSS Code
\1D52D
JS/JSON
\u1D52D
Unix/C/PHP/JAVA
0x1D52D
URL-encode
%F0%9D%94%AD

Customize Mathematical Fraktur Small P

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

๐”ญ
  

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

Insert in HTML

1. Direct symbol:
<span>๐”ญ</span>
HTML Code:
<span>&#120109;</span>
HEX Code:
<span>&#x1D52D;</span>

Add with CSS

.mathematical-fraktur-small-p::before {
  content: '\\1D52D';
}

Set it in JavaScript

document.querySelector('.mathematical-fraktur-small-p').textContent = '๐”ญ';
copied