Latin Small Letter Dotless I

ı

Shortcodes

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

Unicode
U+0131
HTML Code
ı
HEX Code
ı
CSS Code
\0131
JS/JSON
\u0131
Unix/C/PHP/JAVA
0x131
URL-encode
%C4%B1

Customize Latin Small Letter Dotless I

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

ı
  

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

Insert in HTML

1. Direct symbol:
<span>ı</span>
HTML Code:
<span>&#305;</span>
HEX Code:
<span>&#x0131;</span>

Add with CSS

.latin-small-letter-dotless-i::before {
  content: '\\0131';
}

Set it in JavaScript

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