Roman Numeral Ten

Shortcodes

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

Unicode
U+2169
HTML Code
Ⅹ
HEX Code
Ⅹ
CSS Code
\2169
JS/JSON
\u2169
Unix/C/PHP/JAVA
0x2169
URL-encode
%E2%85%A9
copied

Customize Roman Numeral Ten Symbol

Customize Ⅹ symbol as you like and download Roman Numeral Ten 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 Ten symbol in HTML, CSS, and JS?

Insert Ⅹ Roman Numeral Ten using HTML

1. Copy-paste Roman Numeral Ten directly:
<span>Ⅹ</span>
2. HTML Decimal Code:
<span>&#8553;</span>
3. Hexadecimal Code:
<span>&#x2169;</span>
Preview:

Add Roman Numeral Ten symbol with CSS

.roman-numeral-ten::before {
    content: '\\2169';
}
Preview: Roman Numeral Ten

Roman Numeral Ten JavaScript Code

1. Direct Symbol:
document.querySelector('.roman-numeral-ten').textContent = 'Ⅹ';
2. Unicode Escape for Ⅹ:
document.querySelector('.roman-numeral-ten').textContent = '\u2169';
Preview: