Turned Greek Small Letter Iota

Shortcodes

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

Unicode
U+2129
HTML Code
℩
HEX Code
℩
CSS Code
\2129
JS/JSON
\u2129
Unix/C/PHP/JAVA
0x2129
URL-encode
%E2%84%A9

Customize Turned Greek Small Letter Iota

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

  

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

Insert in HTML

1. Direct symbol:
<span>℩</span>
HTML Code:
<span>&#8489;</span>
HEX Code:
<span>&#x2129;</span>

Add with CSS

.turned-greek-small-letter-iota::before {
  content: '\\2129';
}

Set it in JavaScript

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