Latin Capital Letter I

I

Shortcodes

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

Unicode
U+0049
Alt Code
73
HTML Code
I
HEX Code
I
CSS Code
\0049
JS/JSON
\u0049
Unix/C/PHP/JAVA
0x49
URL-encode
I

Customize Latin Capital Letter I

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

I
  

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

Insert in HTML

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

Add with CSS

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

Set it in JavaScript

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