Circled Latin Capital Letter I

Shortcodes

Copy useful codes for circled latin capital letter i symbol Ⓘ to use in websites, apps, blogs, and docs.

Unicode
U+24BE
HTML Code
Ⓘ
HEX Code
Ⓘ
CSS Code
\24BE
JS/JSON
\u24BE
Unix/C/PHP/JAVA
0x24BE
URL-encode
%E2%92%BE

Customize Circled Latin Capital Letter I

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

  

How to use Circled Latin Capital Letter I Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>Ⓘ</span>
HTML Code:
<span>&#9406;</span>
HEX Code:
<span>&#x24BE;</span>

Add with CSS

.circled-latin-capital-letter-i::before {
  content: '\\24BE';
}

Set it in JavaScript

document.querySelector('.circled-latin-capital-letter-i').textContent = 'Ⓘ';
copied