Greek Capital Letter Iota

Ι

Shortcodes

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

Unicode
U+0399
HTML Code
Ι
HTML Entity
Ι
HEX Code
Ι
CSS Code
\0399
JS/JSON
\u0399
Unix/C/PHP/JAVA
0x0399
URL-encode
%CE%99

Customize Greek Capital Letter Iota

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

Ι
  

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

Insert in HTML

1. Direct symbol:
<span>Ι</span>
HTML Code:
<span>&#921;</span>
HTML Entity:
<span>&Iota;</span>
HEX Code:
<span>&#x399;</span>

Add with CSS

.greek-capital-letter-iota::before {
  content: '\\0399';
}

Set it in JavaScript

document.querySelector('.greek-capital-letter-iota').textContent = 'Ι';
copied