Latin Capital Letter U With Diaeresis

Ü

Shortcodes

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

Unicode
U+00DC
Alt Code
220
HTML Code
Ü
HTML Entity
Ü
HEX Code
Ü
CSS Code
\00DC
JS/JSON
\u00DC
Unix/C/PHP/JAVA
0xDC
URL-encode
%C3%9C

Customize Latin Capital Letter U With Diaeresis

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

Ü
  

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

Insert in HTML

1. Direct symbol:
<span>Ü</span>
HTML Code:
<span>&#220;</span>
HTML Entity:
<span>&Uuml;</span>
HEX Code:
<span>&#x00DC;</span>

Add with CSS

.latin-capital-letter-u-with-diaeresis::before {
  content: '\\00DC';
}

Set it in JavaScript

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