Roman Numeral Six

Shortcodes

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

Unicode
U+2165
HTML Code
Ⅵ
HEX Code
Ⅵ
CSS Code
\2165
JS/JSON
\u2165
Unix/C/PHP/JAVA
0x2165
URL-encode
%E2%85%A5

Customize Roman Numeral Six

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

  

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

Insert in HTML

1. Direct symbol:
<span>Ⅵ</span>
HTML Code:
<span>&#8549;</span>
HEX Code:
<span>&#x2165;</span>

Add with CSS

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

Set it in JavaScript

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