Vulgar Fraction Four Fifths

Shortcodes

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

Unicode
U+2158
HTML Code
⅘
HEX Code
⅘
CSS Code
\2158
JS/JSON
\u2158
Unix/C/PHP/JAVA
0x2158
URL-encode
%E2%85%98

Customize Vulgar Fraction Four Fifths

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

  

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

Insert in HTML

1. Direct symbol:
<span>⅘</span>
HTML Code:
<span>&#8536;</span>
HEX Code:
<span>&#x2158;</span>

Add with CSS

.vulgar-fraction-four-fifths::before {
  content: '\\2158';
}

Set it in JavaScript

document.querySelector('.vulgar-fraction-four-fifths').textContent = '⅘';
copied