Vulgar Fraction Three Fifths

Shortcodes

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

Unicode
U+2157
HTML Code
⅗
HEX Code
⅗
CSS Code
\2157
JS/JSON
\u2157
Unix/C/PHP/JAVA
0x2157
URL-encode
%E2%85%97

Customize Vulgar Fraction Three Fifths

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

  

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

Insert in HTML

1. Direct symbol:
<span>⅗</span>
HTML Code:
<span>&#8535;</span>
HEX Code:
<span>&#x2157;</span>

Add with CSS

.vulgar-fraction-three-fifths::before {
  content: '\\2157';
}

Set it in JavaScript

document.querySelector('.vulgar-fraction-three-fifths').textContent = '⅗';
copied