Vulgar Fraction One Quarter

¼

Shortcodes

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

Unicode
U+00BC
Alt Code
188
HTML Code
¼
HTML Entity
¼
HEX Code
¼
CSS Code
\00BC
JS/JSON
\u00BC
Unix/C/PHP/JAVA
0xBC
URL-encode
%C2%BC

Customize Vulgar Fraction One Quarter

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

¼
  

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

Insert in HTML

1. Direct symbol:
<span>¼</span>
HTML Code:
<span>&#188;</span>
HTML Entity:
<span>&frac14;</span>
HEX Code:
<span>&#x00BC;</span>

Add with CSS

.vulgar-fraction-one-quarter::before {
  content: '\\00BC';
}

Set it in JavaScript

document.querySelector('.vulgar-fraction-one-quarter').textContent = '¼';
copied