Greek Subscript Small Letter Gamma

Shortcodes

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

Unicode
U+1D67
HTML Code
ᵧ
HEX Code
ᵧ
CSS Code
\1D67
JS/JSON
\u1D67
Unix/C/PHP/JAVA
0x1D67
URL-encode
%E1%B5%A7

Customize Greek Subscript Small Letter Gamma

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

  

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

Insert in HTML

1. Direct symbol:
<span>ᵧ</span>
HTML Code:
<span>&#7527;</span>
HEX Code:
<span>&#x1D67;</span>

Add with CSS

.greek-subscript-small-letter-gamma::before {
  content: '\\1D67';
}

Set it in JavaScript

document.querySelector('.greek-subscript-small-letter-gamma').textContent = 'ᵧ';
copied