Fullwidth Latin Capital Letter X

Shortcodes

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

Unicode
U+FF38
HTML Code
X
HEX Code
X
CSS Code
\FF38
JS/JSON
\uFF38
Unix/C/PHP/JAVA
0xFF38
URL-encode
%EF%BC%B8

Customize Fullwidth Latin Capital Letter X

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

  

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

Insert in HTML

1. Direct symbol:
<span>X</span>
HTML Code:
<span>&#65336;</span>
HEX Code:
<span>&#xFF38;</span>

Add with CSS

.fullwidth-latin-capital-letter-x::before {
  content: '\\FF38';
}

Set it in JavaScript

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