Small Roman Numeral Six

Shortcodes

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

Unicode
U+2175
HTML Code
ⅵ
HEX Code
ⅵ
CSS Code
\2175
JS/JSON
\u2175
Unix/C/PHP/JAVA
0x2175
URL-encode
%E2%85%B5

Customize Small Roman Numeral Six

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

  

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

Insert in HTML

1. Direct symbol:
<span>ⅵ</span>
HTML Code:
<span>&#8565;</span>
HEX Code:
<span>&#x2175;</span>

Add with CSS

.small-roman-numeral-six::before {
  content: '\\2175';
}

Set it in JavaScript

document.querySelector('.small-roman-numeral-six').textContent = 'ⅵ';
copied