Latin Letter Small Capital P

Shortcodes

Copy useful codes for latin letter small capital p symbol ᴘ to use in websites, apps, blogs, and docs.

Unicode
U+1D18
HTML Code
ᴘ
HEX Code
ᴘ
CSS Code
\1D18
JS/JSON
\u1D18
Unix/C/PHP/JAVA
0x1D18
URL-encode
%E1%B4%98

Customize Latin Letter Small Capital P

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

  

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

Insert in HTML

1. Direct symbol:
<span>ᴘ</span>
HTML Code:
<span>&#7448;</span>
HEX Code:
<span>&#x1D18;</span>

Add with CSS

.latin-letter-small-capital-p::before {
  content: '\\1D18';
}

Set it in JavaScript

document.querySelector('.latin-letter-small-capital-p').textContent = 'ᴘ';
copied