Mathematical Monospace Small P

๐š™

Shortcodes

Copy useful codes for mathematical monospace small p symbol ๐š™ to use in websites, apps, blogs, and docs.

Unicode
U+1D699
HTML Code
𝚙
HEX Code
𝚙
CSS Code
\1D699
JS/JSON
\u1D699
Unix/C/PHP/JAVA
0x1D699
URL-encode
%F0%9D%9A%99

Customize Mathematical Monospace Small P

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

๐š™
  

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

Insert in HTML

1. Direct symbol:
<span>๐š™</span>
HTML Code:
<span>&#120473;</span>
HEX Code:
<span>&#x1D699;</span>

Add with CSS

.mathematical-monospace-small-p::before {
  content: '\\1D699';
}

Set it in JavaScript

document.querySelector('.mathematical-monospace-small-p').textContent = '๐š™';
copied