Roman Numeral Five Hundred

Shortcodes

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

Unicode
U+216E
HTML Code
Ⅾ
HEX Code
Ⅾ
CSS Code
\216E
JS/JSON
\u216E
Unix/C/PHP/JAVA
0x216E
URL-encode
%E2%85%AE

Customize Roman Numeral Five Hundred

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

  

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

Insert in HTML

1. Direct symbol:
<span>Ⅾ</span>
HTML Code:
<span>&#8558;</span>
HEX Code:
<span>&#x216E;</span>

Add with CSS

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

Set it in JavaScript

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