Modifier Letter Small Greek Gamma

Shortcodes

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

Unicode
U+1D5E
HTML Code
ᵞ
HEX Code
ᵞ
CSS Code
\1D5E
JS/JSON
\u1D5E
Unix/C/PHP/JAVA
0x1D5E
URL-encode
%E1%B5%9E

Customize Modifier Letter Small Greek Gamma

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

  

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

Insert in HTML

1. Direct symbol:
<span>ᵞ</span>
HTML Code:
<span>&#7518;</span>
HEX Code:
<span>&#x1D5E;</span>

Add with CSS

.modifier-letter-small-greek-gamma::before {
  content: '\\1D5E';
}

Set it in JavaScript

document.querySelector('.modifier-letter-small-greek-gamma').textContent = 'ᵞ';
copied