Fullwidth Latin Small Letter U

Shortcodes

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

Unicode
U+FF55
HTML Code
u
HEX Code
u
CSS Code
\FF55
JS/JSON
\uFF55
Unix/C/PHP/JAVA
0xFF55
URL-encode
%EF%BD%95

Customize Fullwidth Latin Small Letter U

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

  

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

Insert in HTML

1. Direct symbol:
<span>u</span>
HTML Code:
<span>&#65365;</span>
HEX Code:
<span>&#xFF55;</span>

Add with CSS

.fullwidth-latin-small-letter-u::before {
  content: '\\FF55';
}

Set it in JavaScript

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