Greek Small Letter Pi

π

Shortcodes

Copy useful codes for greek small letter pi symbol π to use in websites, apps, blogs, and docs.

Unicode
U+03C0
HTML Code
π
HTML Entity
π
HEX Code
π
CSS Code
\03C0
JS/JSON
\u03C0
Unix/C/PHP/JAVA
0x3C0
URL-encode
%CF%80

Customize Greek Small Letter Pi

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

π
  

How to use Greek Small Letter Pi Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>π</span>
HTML Code:
<span>&#960;</span>
HTML Entity:
<span>&pi;</span>
HEX Code:
<span>&#x03C0;</span>

Add with CSS

.greek-small-letter-pi::before {
  content: '\\03C0';
}

Set it in JavaScript

document.querySelector('.greek-small-letter-pi').textContent = 'π';
copied