Gamma Symbol

Unicode Name: Greek Small Letter Gamma

γ

Shortcodes

Copy and paste codes for Gamma Symbol γ to use in your websites, apps, blogs, and more.

Unicode
U+03B3
HTML Code
γ
HTML Entity
γ
HEX Code
γ
CSS Code
\03B3
JS/JSON
\u03B3
Unix/C/PHP/JAVA
0x03B3
URL-encode
%CE%B3
copied

Customize Gamma Symbol Symbol

Customize γ symbol as you like and download Gamma Symbol as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.
γ
 

How to add Gamma Symbol in HTML, CSS, and JS?

Insert γ Gamma Symbol using HTML

1. Copy-paste Gamma Symbol directly:
<span>γ</span>
2. HTML Decimal Code:
<span>&#947;</span>
3. HTML Entity:
<span>&gamma;</span>
4. Hexadecimal Code:
<span>&#x3B3;</span>
Preview: γ

Add Gamma Symbol with CSS

.gamma::before {
    content: '\\03B3';
}
Preview: Gamma Symbol

Gamma Symbol JavaScript Code

1. Direct Symbol:
document.querySelector('.gamma').textContent = 'γ';
2. Unicode Escape for γ:
document.querySelector('.gamma').textContent = '\u03B3';
Preview: γ