Small Roman Numeral Reversed One Hundred

Shortcodes

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

Unicode
U+2184
HTML Code
ↄ
HEX Code
ↄ
CSS Code
\2184
JS/JSON
\u2184
Unix/C/PHP/JAVA
0x2184
URL-encode
%E2%86%84

Customize Small Roman Numeral Reversed One Hundred

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

  

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

Insert in HTML

1. Direct symbol:
<span>ↄ</span>
HTML Code:
<span>&#8580;</span>
HEX Code:
<span>&#x2184;</span>

Add with CSS

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

Set it in JavaScript

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