Roman Numeral Seven

Shortcodes

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

Unicode
U+2166
HTML Code
Ⅶ
HEX Code
Ⅶ
CSS Code
\2166
JS/JSON
\u2166
Unix/C/PHP/JAVA
0x2166
URL-encode
%E2%85%A6

Customize Roman Numeral Seven

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

  

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

Insert in HTML

1. Direct symbol:
<span>Ⅶ</span>
HTML Code:
<span>&#8550;</span>
HEX Code:
<span>&#x2166;</span>

Add with CSS

.roman-numeral-seven::before {
  content: '\\2166';
}

Set it in JavaScript

document.querySelector('.roman-numeral-seven').textContent = 'Ⅶ';
copied