Latin Capital Letter Y With Circumflex

Ŷ

Shortcodes

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

Unicode
U+0176
HTML Code
Ŷ
HEX Code
Ŷ
CSS Code
\0176
JS/JSON
\u0176
Unix/C/PHP/JAVA
0x176
URL-encode
%C5%B6

Customize Latin Capital Letter Y With Circumflex

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

Ŷ
  

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

Insert in HTML

1. Direct symbol:
<span>Ŷ</span>
HTML Code:
<span>&#374;</span>
HEX Code:
<span>&#x0176;</span>

Add with CSS

.latin-capital-letter-y-with-circumflex::before {
  content: '\\0176';
}

Set it in JavaScript

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