Roman Numeral Seven

Shortcodes

Copy and paste codes for Roman Numeral Seven symbol Ⅶ to use in your websites, apps, blogs, and more.

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

Customize Roman Numeral Seven Symbol

Customize Ⅶ symbol as you like and download Roman Numeral Seven as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.

                        
                    

How to add Roman Numeral Seven symbol in HTML, CSS, and JS?

Insert Ⅶ Roman Numeral Seven using HTML

1. Copy-paste Roman Numeral Seven directly:
<span>Ⅶ</span>
2. HTML Decimal Code:
<span>&#8550;</span>
3. Hexadecimal Code:
<span>&#x2166;</span>
Preview:

Add Roman Numeral Seven symbol with CSS

.roman-numeral-seven::before {
    content: '\\2166';
}
Preview: Roman Numeral Seven

Roman Numeral Seven JavaScript Code

1. Direct Symbol:
document.querySelector('.roman-numeral-seven').textContent = 'Ⅶ';
2. Unicode Escape for Ⅶ:
document.querySelector('.roman-numeral-seven').textContent = '\u2166';
Preview: