Roman Numeral One

Shortcodes

Copy and paste codes for Roman Numeral One symbol Ⅰ to use in your websites, apps, blogs, and more.

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

Customize Roman Numeral One Symbol

Customize Ⅰ symbol as you like and download Roman Numeral One as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.
 

How to add Roman Numeral One symbol in HTML, CSS, and JS?

Insert Ⅰ Roman Numeral One using HTML

1. Copy-paste Roman Numeral One directly:
<span>Ⅰ</span>
2. HTML Decimal Code:
<span>&#8544;</span>
3. Hexadecimal Code:
<span>&#x2160;</span>
Preview:

Add Roman Numeral One symbol with CSS

.roman-numeral-one::before {
    content: '\\2160';
}
Preview: Roman Numeral One

Roman Numeral One JavaScript Code

1. Direct Symbol:
document.querySelector('.roman-numeral-one').textContent = 'Ⅰ';
2. Unicode Escape for Ⅰ:
document.querySelector('.roman-numeral-one').textContent = '\u2160';
Preview: