Small Roman Numeral Five Hundred

Shortcodes

Copy useful codes for small roman numeral five hundred symbol ⅾ to use in websites, apps, blogs, and docs.

Unicode
U+217E
HTML Code
ⅾ
HEX Code
ⅾ
CSS Code
\217E
JS/JSON
\u217E
Unix/C/PHP/JAVA
0x217E
URL-encode
%E2%85%BE

Customize Small Roman Numeral Five Hundred

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

  

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

Insert in HTML

1. Direct symbol:
<span>ⅾ</span>
HTML Code:
<span>&#8574;</span>
HEX Code:
<span>&#x217E;</span>

Add with CSS

.small-roman-numeral-five-hundred::before {
  content: '\\217E';
}

Set it in JavaScript

document.querySelector('.small-roman-numeral-five-hundred').textContent = 'ⅾ';
copied