Cyrillic Small Letter Pe

п

Shortcodes

Copy useful codes for cyrillic small letter pe symbol п to use in websites, apps, blogs, and docs.

Unicode
U+043F
HTML Code
п
HEX Code
п
CSS Code
\043F
JS/JSON
\u043F
Unix/C/PHP/JAVA
0x43F
URL-encode
%D0%BF

Customize Cyrillic Small Letter Pe

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

п
  

How to use Cyrillic Small Letter Pe Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>п</span>
HTML Code:
<span>&#1087;</span>
HEX Code:
<span>&#x043F;</span>

Add with CSS

.cyrillic-small-letter-pe::before {
  content: '\\043F';
}

Set it in JavaScript

document.querySelector('.cyrillic-small-letter-pe').textContent = 'п';
copied