Latin Subscript Small Letter P

Shortcodes

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

Unicode
U+209A
HTML Code
ₚ
HEX Code
ₚ
CSS Code
\209A
JS/JSON
\u209A
Unix/C/PHP/JAVA
0x209A
URL-encode
%E2%82%9A

Customize Latin Subscript Small Letter P

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

  

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

Insert in HTML

1. Direct symbol:
<span>ₚ</span>
HTML Code:
<span>&#8346;</span>
HEX Code:
<span>&#x209A;</span>

Add with CSS

.latin-subscript-small-letter-p::before {
  content: '\\209A';
}

Set it in JavaScript

document.querySelector('.latin-subscript-small-letter-p').textContent = 'ₚ';
copied