Small Roman Numeral Ten

Shortcodes

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

Unicode
U+2179
HTML Code
ⅹ
HEX Code
ⅹ
CSS Code
\2179
JS/JSON
\u2179
Unix/C/PHP/JAVA
0x2179
URL-encode
%E2%85%B9

Customize Small Roman Numeral Ten

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

  

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

Insert in HTML

1. Direct symbol:
<span>ⅹ</span>
HTML Code:
<span>&#8569;</span>
HEX Code:
<span>&#x2179;</span>

Add with CSS

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

Set it in JavaScript

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