Latin Subscript Small Letter X

Shortcodes

Copy and paste codes for Latin Subscript Small Letter X symbol ₓ to use in your websites, apps, blogs, and more.

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

Customize Latin Subscript Small Letter X Symbol

Customize ₓ symbol as you like and download Latin Subscript Small Letter X as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.
 

How to add Latin Subscript Small Letter X symbol in HTML, CSS, and JS?

Insert ₓ Latin Subscript Small Letter X using HTML

1. Copy-paste Latin Subscript Small Letter X directly:
<span>ₓ</span>
2. HTML Decimal Code:
<span>&#8339;</span>
3. Hexadecimal Code:
<span>&#x2093;</span>
Preview:

Add Latin Subscript Small Letter X symbol with CSS

.latin-subscript-small-letter-x::before {
    content: '\\2093';
}
Preview: Latin Subscript Small Letter X

Latin Subscript Small Letter X JavaScript Code

1. Direct Symbol:
document.querySelector('.latin-subscript-small-letter-x').textContent = 'ₓ';
2. Unicode Escape for ₓ:
document.querySelector('.latin-subscript-small-letter-x').textContent = '\u2093';
Preview: