Fullwidth Latin Capital Letter I

Shortcodes

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

Unicode
U+FF29
HTML Code
I
HEX Code
I
CSS Code
\FF29
JS/JSON
\uFF29
Unix/C/PHP/JAVA
0xFF29
URL-encode
%EF%BC%A9

Customize Fullwidth Latin Capital Letter I

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

  

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

Insert in HTML

1. Direct symbol:
<span>I</span>
HTML Code:
<span>&#65321;</span>
HEX Code:
<span>&#xFF29;</span>

Add with CSS

.fullwidth-latin-capital-letter-i::before {
  content: '\\FF29';
}

Set it in JavaScript

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