Vulgar Fraction Two Fifths

Shortcodes

Copy useful codes for vulgar fraction two fifths symbol ⅖ to use in websites, apps, blogs, and docs.

Unicode
U+2156
HTML Code
⅖
HEX Code
⅖
CSS Code
\2156
JS/JSON
\u2156
Unix/C/PHP/JAVA
0x2156
URL-encode
%E2%85%96

Customize Vulgar Fraction Two Fifths

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

  

How to use Vulgar Fraction Two Fifths Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⅖</span>
HTML Code:
<span>&#8534;</span>
HEX Code:
<span>&#x2156;</span>

Add with CSS

.vulgar-fraction-two-fifths::before {
  content: '\\2156';
}

Set it in JavaScript

document.querySelector('.vulgar-fraction-two-fifths').textContent = '⅖';
copied