Vulgar Fraction Five Sixths

Shortcodes

Copy useful codes for vulgar fraction five sixths symbol ⅚ to use in websites, apps, blogs, and docs.

Unicode
U+215A
HTML Code
⅚
HEX Code
⅚
CSS Code
\215A
JS/JSON
\u215A
Unix/C/PHP/JAVA
0x215A
URL-encode
%E2%85%9A

Customize Vulgar Fraction Five Sixths

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

  

How to use Vulgar Fraction Five Sixths Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⅚</span>
HTML Code:
<span>&#8538;</span>
HEX Code:
<span>&#x215A;</span>

Add with CSS

.vulgar-fraction-five-sixths::before {
  content: '\\215A';
}

Set it in JavaScript

document.querySelector('.vulgar-fraction-five-sixths').textContent = '⅚';
copied