Greek Phi Symbol

ϕ

Shortcodes

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

Unicode
U+03D5
HTML Code
ϕ
HEX Code
ϕ
CSS Code
\03D5
JS/JSON
\u03D5
Unix/C/PHP/JAVA
0x03D5
URL-encode
%CF%95

Customize Greek Phi Symbol

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

ϕ
  

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

Insert in HTML

1. Direct symbol:
<span>ϕ</span>
HTML Code:
<span>&#981;</span>
HEX Code:
<span>&#x3D5;</span>

Add with CSS

.greek-phi-symbol::before {
  content: '\\03D5';
}

Set it in JavaScript

document.querySelector('.greek-phi-symbol').textContent = 'ϕ';
copied