Roman Numeral Ten

Shortcodes

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

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

Customize Roman Numeral Ten

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

  

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

Insert in HTML

1. Direct symbol:
<span>Ⅹ</span>
HTML Code:
<span>&#8553;</span>
HEX Code:
<span>&#x2169;</span>

Add with CSS

.roman-numeral-ten::before {
  content: '\\2169';
}

Set it in JavaScript

document.querySelector('.roman-numeral-ten').textContent = 'Ⅹ';
copied