Latin Small Letter Y With Circumflex

ŷ

Shortcodes

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

Unicode
U+0177
HTML Code
ŷ
HEX Code
ŷ
CSS Code
\0177
JS/JSON
\u0177
Unix/C/PHP/JAVA
0x177
URL-encode
%C5%B7

Customize Latin Small Letter Y With Circumflex

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

ŷ
  

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

Insert in HTML

1. Direct symbol:
<span>ŷ</span>
HTML Code:
<span>&#375;</span>
HEX Code:
<span>&#x0177;</span>

Add with CSS

.latin-small-letter-y-with-circumflex::before {
  content: '\\0177';
}

Set it in JavaScript

document.querySelector('.latin-small-letter-y-with-circumflex').textContent = 'ŷ';
copied