Fullwidth Latin Capital Letter P

Shortcodes

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

Unicode
U+FF30
HTML Code
P
HEX Code
P
CSS Code
\FF30
JS/JSON
\uFF30
Unix/C/PHP/JAVA
0xFF30
URL-encode
%EF%BC%B0

Customize Fullwidth Latin Capital Letter P

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

  

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

Insert in HTML

1. Direct symbol:
<span>P</span>
HTML Code:
<span>&#65328;</span>
HEX Code:
<span>&#xFF30;</span>

Add with CSS

.fullwidth-latin-capital-letter-p::before {
  content: '\\FF30';
}

Set it in JavaScript

document.querySelector('.fullwidth-latin-capital-letter-p').textContent = 'P';
copied