Fraction Numerator One

Shortcodes

Copy useful codes for fraction numerator one symbol ⅟ to use in websites, apps, blogs, and docs.

Unicode
U+215F
HTML Code
⅟
HEX Code
⅟
CSS Code
\215F
JS/JSON
\u215F
Unix/C/PHP/JAVA
0x215F
URL-encode
%E2%85%9F

Customize Fraction Numerator One

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

  

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

Insert in HTML

1. Direct symbol:
<span>⅟</span>
HTML Code:
<span>&#8543;</span>
HEX Code:
<span>&#x215F;</span>

Add with CSS

.fraction-numerator-one::before {
  content: '\\215F';
}

Set it in JavaScript

document.querySelector('.fraction-numerator-one').textContent = '⅟';
copied