Modifier Letter Small P

Shortcodes

Copy useful codes for modifier letter small p symbol ᵖ to use in websites, apps, blogs, and docs.

Unicode
U+1D56
HTML Code
ᵖ
HEX Code
ᵖ
CSS Code
\1D56
JS/JSON
\u1D56
Unix/C/PHP/JAVA
0x1D56
URL-encode
%E1%B5%96

Customize Modifier Letter Small P

Customize ᵖ, download it as SVG or PNG, or copy the generated HTML snippet.

  

How to use Modifier Letter Small P Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>ᵖ</span>
HTML Code:
<span>&#7510;</span>
HEX Code:
<span>&#x1D56;</span>

Add with CSS

.modifier-letter-small-p::before {
  content: '\\1D56';
}

Set it in JavaScript

document.querySelector('.modifier-letter-small-p').textContent = 'ᵖ';
copied