Fullwidth Latin Small Letter X

Shortcodes

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

Unicode
U+FF58
HTML Code
x
HEX Code
x
CSS Code
\FF58
JS/JSON
\uFF58
Unix/C/PHP/JAVA
0xFF58
URL-encode
%EF%BD%98

Customize Fullwidth Latin Small Letter X

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

  

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

Insert in HTML

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

Add with CSS

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

Set it in JavaScript

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