Small Roman Numeral One

Shortcodes

Copy useful codes for small roman numeral one symbol ⅰ to use in websites, apps, blogs, and docs.

Unicode
U+2170
HTML Code
ⅰ
HEX Code
ⅰ
CSS Code
\2170
JS/JSON
\u2170
Unix/C/PHP/JAVA
0x2170
URL-encode
%E2%85%B0

Customize Small Roman Numeral One

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

  

How to use Small Roman Numeral One Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>ⅰ</span>
HTML Code:
<span>&#8560;</span>
HEX Code:
<span>&#x2170;</span>

Add with CSS

.small-roman-numeral-one::before {
  content: '\\2170';
}

Set it in JavaScript

document.querySelector('.small-roman-numeral-one').textContent = 'ⅰ';
copied