Latin Letter Small Capital Y

ʏ

Shortcodes

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

Unicode
U+028F
HTML Code
ʏ
HEX Code
ʏ
CSS Code
\028F
JS/JSON
\u028F
Unix/C/PHP/JAVA
0x28F
URL-encode
%CA%8F

Customize Latin Letter Small Capital Y

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

ʏ
  

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

Insert in HTML

1. Direct symbol:
<span>ʏ</span>
HTML Code:
<span>&#655;</span>
HEX Code:
<span>&#x028F;</span>

Add with CSS

.latin-letter-small-capital-y::before {
  content: '\\028F';
}

Set it in JavaScript

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