Vulgar Fraction One Seventh

Shortcodes

Copy useful codes for vulgar fraction one seventh symbol ⅐ to use in websites, apps, blogs, and docs.

Unicode
U+2150
HTML Code
⅐
HEX Code
⅐
CSS Code
\2150
JS/JSON
\u2150
Unix/C/PHP/JAVA
0x2150
URL-encode
%E2%85%90

Customize Vulgar Fraction One Seventh

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

  

How to use Vulgar Fraction One Seventh Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⅐</span>
HTML Code:
<span>&#8528;</span>
HEX Code:
<span>&#x2150;</span>

Add with CSS

.vulgar-fraction-one-seventh::before {
  content: '\\2150';
}

Set it in JavaScript

document.querySelector('.vulgar-fraction-one-seventh').textContent = '⅐';
copied