Latin Subscript Small Letter X

Shortcodes

Copy useful codes for latin subscript small letter x symbol ₓ to use in websites, apps, blogs, and docs.

Unicode
U+2093
HTML Code
ₓ
HEX Code
ₓ
CSS Code
\2093
JS/JSON
\u2093
Unix/C/PHP/JAVA
0x2093
URL-encode
%E2%82%93

Customize Latin Subscript Small Letter X

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

  

How to use Latin Subscript Small Letter X Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>ₓ</span>
HTML Code:
<span>&#8339;</span>
HEX Code:
<span>&#x2093;</span>

Add with CSS

.latin-subscript-small-letter-x::before {
  content: '\\2093';
}

Set it in JavaScript

document.querySelector('.latin-subscript-small-letter-x').textContent = 'ₓ';
copied