Greek Small Letter Iota

ι

Shortcodes

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

Unicode
U+03B9
HTML Code
ι
HTML Entity
ι
HEX Code
ι
CSS Code
\03B9
JS/JSON
\u03B9
Unix/C/PHP/JAVA
0x03B9
URL-encode
%CE%B9

Customize Greek Small Letter Iota

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

ι
  

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

Insert in HTML

1. Direct symbol:
<span>ι</span>
HTML Code:
<span>&#953;</span>
HTML Entity:
<span>&iota;</span>
HEX Code:
<span>&#x3B9;</span>

Add with CSS

.greek-small-letter-iota::before {
  content: '\\03B9';
}

Set it in JavaScript

document.querySelector('.greek-small-letter-iota').textContent = 'ι';
copied