Roman Numeral One Thousand C D

Shortcodes

Copy useful codes for roman numeral one thousand c d symbol ↀ to use in websites, apps, blogs, and docs.

Unicode
U+2180
HTML Code
ↀ
HEX Code
ↀ
CSS Code
\2180
JS/JSON
\u2180
Unix/C/PHP/JAVA
0x2180
URL-encode
%E2%86%80

Customize Roman Numeral One Thousand C D

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

  

How to use Roman Numeral One Thousand C D Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>ↀ</span>
HTML Code:
<span>&#8576;</span>
HEX Code:
<span>&#x2180;</span>

Add with CSS

.roman-numeral-one-thousand-cd::before {
  content: '\\2180';
}

Set it in JavaScript

document.querySelector('.roman-numeral-one-thousand-cd').textContent = 'ↀ';
copied