Roman Numeral One

Shortcodes

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

Unicode
U+2160
HTML Code
Ⅰ
HEX Code
Ⅰ
CSS Code
\2160
JS/JSON
\u2160
Unix/C/PHP/JAVA
0x2160
URL-encode
%E2%85%A0

Customize Roman Numeral One

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

  

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

Insert in HTML

1. Direct symbol:
<span>Ⅰ</span>
HTML Code:
<span>&#8544;</span>
HEX Code:
<span>&#x2160;</span>

Add with CSS

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

Set it in JavaScript

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