Modifier Letter Small X

ˣ

Shortcodes

Copy useful codes for modifier letter small x symbol ˣ to use in websites, apps, blogs, and docs.

Unicode
U+02E3
HTML Code
ˣ
HEX Code
ˣ
CSS Code
\02E3
JS/JSON
\u02E3
Unix/C/PHP/JAVA
0x2E3
URL-encode
%CB%A3

Customize Modifier Letter Small X

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

ˣ
  

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

Insert in HTML

1. Direct symbol:
<span>ˣ</span>
HTML Code:
<span>&#739;</span>
HEX Code:
<span>&#x02E3;</span>

Add with CSS

.modifier-letter-small-x::before {
  content: '\\02E3';
}

Set it in JavaScript

document.querySelector('.modifier-letter-small-x').textContent = 'ˣ';
copied