Roman Numeral Reversed One Hundred

Shortcodes

Copy useful codes for roman numeral reversed one hundred symbol Ↄ to use in websites, apps, blogs, and docs.

Unicode
U+2183
HTML Code
Ↄ
HEX Code
Ↄ
CSS Code
\2183
JS/JSON
\u2183
Unix/C/PHP/JAVA
0x2183
URL-encode
%E2%86%83

Customize Roman Numeral Reversed One Hundred

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

  

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

Insert in HTML

1. Direct symbol:
<span>Ↄ</span>
HTML Code:
<span>&#8579;</span>
HEX Code:
<span>&#x2183;</span>

Add with CSS

.roman-numeral-reversed-one-hundred::before {
  content: '\\2183';
}

Set it in JavaScript

document.querySelector('.roman-numeral-reversed-one-hundred').textContent = 'Ↄ';
copied