Fullwidth Latin Capital Letter U

Shortcodes

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

Unicode
U+FF35
HTML Code
U
HEX Code
U
CSS Code
\FF35
JS/JSON
\uFF35
Unix/C/PHP/JAVA
0xFF35
URL-encode
%EF%BC%B5

Customize Fullwidth Latin Capital Letter U

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

  

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

Insert in HTML

1. Direct symbol:
<span>U</span>
HTML Code:
<span>&#65333;</span>
HEX Code:
<span>&#xFF35;</span>

Add with CSS

.fullwidth-latin-capital-letter-u::before {
  content: '\\FF35';
}

Set it in JavaScript

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