Greek Small Letter Eta

η

Shortcodes

Copy useful codes for greek small letter eta symbol η to use in websites, apps, blogs, and docs.

Unicode
U+03B7
HTML Code
η
HTML Entity
η
HEX Code
η
CSS Code
\03B7
JS/JSON
\u03B7
Unix/C/PHP/JAVA
0x03B7
URL-encode
%CE%B7

Customize Greek Small Letter Eta

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

η
  

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

Insert in HTML

1. Direct symbol:
<span>η</span>
HTML Code:
<span>&#951;</span>
HTML Entity:
<span>&eta;</span>
HEX Code:
<span>&#x3B7;</span>

Add with CSS

.greek-small-letter-eta::before {
  content: '\\03B7';
}

Set it in JavaScript

document.querySelector('.greek-small-letter-eta').textContent = 'η';
copied