Circled Latin Small Letter I

Shortcodes

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

Unicode
U+24D8
HTML Code
ⓘ
HEX Code
ⓘ
CSS Code
\24D8
JS/JSON
\u24D8
Unix/C/PHP/JAVA
0x24D8
URL-encode
%E2%93%98

Customize Circled Latin Small Letter I

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

  

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

Insert in HTML

1. Direct symbol:
<span>ⓘ</span>
HTML Code:
<span>&#9432;</span>
HEX Code:
<span>&#x24D8;</span>

Add with CSS

.circled-latin-small-letter-i::before {
  content: '\\24D8';
}

Set it in JavaScript

document.querySelector('.circled-latin-small-letter-i').textContent = 'ⓘ';
copied