Fullwidth Latin Small Letter I

Shortcodes

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

Unicode
U+FF49
HTML Code
i
HEX Code
i
CSS Code
\FF49
JS/JSON
\uFF49
Unix/C/PHP/JAVA
0xFF49
URL-encode
%EF%BD%89

Customize Fullwidth Latin Small Letter I

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

  

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

Insert in HTML

1. Direct symbol:
<span>i</span>
HTML Code:
<span>&#65353;</span>
HEX Code:
<span>&#xFF49;</span>

Add with CSS

.fullwidth-latin-small-letter-i::before {
  content: '\\FF49';
}

Set it in JavaScript

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