Greek Capital Letter Eta

Η

Shortcodes

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

Unicode
U+0397
HTML Code
Η
HEX Code
Η
CSS Code
\0397
JS/JSON
\u0397
Unix/C/PHP/JAVA
0x0397
URL-encode
%CE%97

Customize Greek Capital Letter Eta

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

Η
  

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

Insert in HTML

1. Direct symbol:
<span>Η</span>
HTML Code:
<span>&#919;</span>
HEX Code:
<span>&#x397;</span>

Add with CSS

.greek-capital-letter-eta::before {
  content: '\\0397';
}

Set it in JavaScript

document.querySelector('.greek-capital-letter-eta').textContent = 'Η';
copied