Vulgar Fraction Three Quarters

¾

Shortcodes

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

Unicode
U+00BE
Alt Code
190
HTML Code
¾
HTML Entity
¾
HEX Code
¾
CSS Code
\00BE
JS/JSON
\u00BE
Unix/C/PHP/JAVA
0xBE
URL-encode
%C2%BE

Customize Vulgar Fraction Three Quarters

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

¾
  

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

Insert in HTML

1. Direct symbol:
<span>¾</span>
HTML Code:
<span>&#190;</span>
HTML Entity:
<span>&frac34;</span>
HEX Code:
<span>&#x00BE;</span>

Add with CSS

.vulgar-fraction-three-quarters::before {
  content: '\\00BE';
}

Set it in JavaScript

document.querySelector('.vulgar-fraction-three-quarters').textContent = '¾';
copied