Fullwidth Latin Small Letter Y

Shortcodes

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

Unicode
U+FF59
HTML Code
y
HEX Code
y
CSS Code
\FF59
JS/JSON
\uFF59
Unix/C/PHP/JAVA
0xFF59
URL-encode
%EF%BD%99

Customize Fullwidth Latin Small Letter Y

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

  

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

Insert in HTML

1. Direct symbol:
<span>y</span>
HTML Code:
<span>&#65369;</span>
HEX Code:
<span>&#xFF59;</span>

Add with CSS

.fullwidth-latin-small-letter-y::before {
  content: '\\FF59';
}

Set it in JavaScript

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