Latin Capital Letter Y With Diaeresis

Ÿ

Shortcodes

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

Unicode
U+0178
HTML Code
Ÿ
HTML Entity
Ÿ
HEX Code
Ÿ
CSS Code
\0178
JS/JSON
\u0178
Unix/C/PHP/JAVA
0x178
URL-encode
%C5%B8

Customize Latin Capital Letter Y With Diaeresis

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

Ÿ
  

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

Insert in HTML

1. Direct symbol:
<span>Ÿ</span>
HTML Code:
<span>&#376;</span>
HTML Entity:
<span>&Yuml;</span>
HEX Code:
<span>&#x0178;</span>

Add with CSS

.latin-capital-letter-y-with-diaeresis::before {
  content: '\\0178';
}

Set it in JavaScript

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