Greek Subscript Small Letter Phi

Shortcodes

Copy useful codes for greek subscript small letter phi symbol ᵩ to use in websites, apps, blogs, and docs.

Unicode
U+1D69
HTML Code
ᵩ
HEX Code
ᵩ
CSS Code
\1D69
JS/JSON
\u1D69
Unix/C/PHP/JAVA
0x1D69
URL-encode
%E1%B5%A9

Customize Greek Subscript Small Letter Phi

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

  

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

Insert in HTML

1. Direct symbol:
<span>ᵩ</span>
HTML Code:
<span>&#7529;</span>
HEX Code:
<span>&#x1D69;</span>

Add with CSS

.greek-subscript-small-letter-phi::before {
  content: '\\1D69';
}

Set it in JavaScript

document.querySelector('.greek-subscript-small-letter-phi').textContent = 'ᵩ';
copied