Subscript Four

Shortcodes

Copy useful codes for subscript four symbol ₄ to use in websites, apps, blogs, and docs.

Unicode
U+2084
HTML Code
₄
HEX Code
₄
CSS Code
\2084
JS/JSON
\u2084
Unix/C/PHP/JAVA
0x2084
URL-encode
%E2%82%84

Customize Subscript Four

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

  

How to use Subscript Four Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>₄</span>
HTML Code:
<span>&#8324;</span>
HEX Code:
<span>&#x2084;</span>

Add with CSS

.subscript-four::before {
  content: '\\2084';
}

Set it in JavaScript

document.querySelector('.subscript-four').textContent = '₄';
copied