Modifier Letter Small Y

ʸ

Shortcodes

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

Unicode
U+02B8
HTML Code
ʸ
HEX Code
ʸ
CSS Code
\02B8
JS/JSON
\u02B8
Unix/C/PHP/JAVA
0x2B8
URL-encode
%CA%B8

Customize Modifier Letter Small Y

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

ʸ
  

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

Insert in HTML

1. Direct symbol:
<span>ʸ</span>
HTML Code:
<span>&#696;</span>
HEX Code:
<span>&#x02B8;</span>

Add with CSS

.modifier-letter-small-y::before {
  content: '\\02B8';
}

Set it in JavaScript

document.querySelector('.modifier-letter-small-y').textContent = 'ʸ';
copied