Greek Capital Letter Phi

Φ

Shortcodes

Copy useful codes for greek capital letter phi symbol Φ to use in websites, apps, blogs, and docs.

Unicode
U+03A6
HTML Code
Φ
HTML Entity
Φ
HEX Code
Φ
CSS Code
\03A6
JS/JSON
\u03A6
Unix/C/PHP/JAVA
0x03A6
URL-encode
%CE%A6

Customize Greek Capital Letter Phi

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

Φ
  

How to use Greek Capital Letter Phi Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>Φ</span>
HTML Code:
<span>&#934;</span>
HTML Entity:
<span>&Phi;</span>
HEX Code:
<span>&#x3A6;</span>

Add with CSS

.greek-capital-letter-phi::before {
  content: '\\03A6';
}

Set it in JavaScript

document.querySelector('.greek-capital-letter-phi').textContent = 'Φ';
copied