Small Roman Numeral Seven

Shortcodes

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

Unicode
U+2176
HTML Code
ⅶ
HEX Code
ⅶ
CSS Code
\2176
JS/JSON
\u2176
Unix/C/PHP/JAVA
0x2176
URL-encode
%E2%85%B6

Customize Small Roman Numeral Seven

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

  

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

Insert in HTML

1. Direct symbol:
<span>ⅶ</span>
HTML Code:
<span>&#8566;</span>
HEX Code:
<span>&#x2176;</span>

Add with CSS

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

Set it in JavaScript

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