Latin Small Letter X

x

Shortcodes

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

Unicode
U+0078
Alt Code
120
HTML Code
x
HEX Code
x
CSS Code
\0078
JS/JSON
\u0078
Unix/C/PHP/JAVA
0x78
URL-encode
x

Customize Latin Small Letter X

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

x
  

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

Insert in HTML

1. Direct symbol:
<span>x</span>
HTML Code:
<span>&#120;</span>
HEX Code:
<span>&#x0078;</span>

Add with CSS

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

Set it in JavaScript

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