Modifier Letter Capital P

Shortcodes

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

Unicode
U+1D3E
HTML Code
ᴾ
HEX Code
ᴾ
CSS Code
\1D3E
JS/JSON
\u1D3E
Unix/C/PHP/JAVA
0x1D3E
URL-encode
%E1%B4%BE

Customize Modifier Letter Capital P

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

  

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

Insert in HTML

1. Direct symbol:
<span>ᴾ</span>
HTML Code:
<span>&#7486;</span>
HEX Code:
<span>&#x1D3E;</span>

Add with CSS

.modifier-letter-capital-p::before {
  content: '\\1D3E';
}

Set it in JavaScript

document.querySelector('.modifier-letter-capital-p').textContent = 'ᴾ';
copied