Roman Numeral One Hundred

Shortcodes

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

Unicode
U+216D
HTML Code
Ⅽ
HEX Code
Ⅽ
CSS Code
\216D
JS/JSON
\u216D
Unix/C/PHP/JAVA
0x216D
URL-encode
%E2%85%AD

Customize Roman Numeral One Hundred

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

  

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

Insert in HTML

1. Direct symbol:
<span>Ⅽ</span>
HTML Code:
<span>&#8557;</span>
HEX Code:
<span>&#x216D;</span>

Add with CSS

.roman-numeral-one-hundred::before {
  content: '\\216D';
}

Set it in JavaScript

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