Fullwidth Latin Capital Letter Y

Shortcodes

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

Unicode
U+FF39
HTML Code
Y
HEX Code
Y
CSS Code
\FF39
JS/JSON
\uFF39
Unix/C/PHP/JAVA
0xFF39
URL-encode
%EF%BC%B9

Customize Fullwidth Latin Capital Letter Y

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

  

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

Insert in HTML

1. Direct symbol:
<span>Y</span>
HTML Code:
<span>&#65337;</span>
HEX Code:
<span>&#xFF39;</span>

Add with CSS

.fullwidth-latin-capital-letter-y::before {
  content: '\\FF39';
}

Set it in JavaScript

document.querySelector('.fullwidth-latin-capital-letter-y').textContent = 'Y';
copied