U with two Dots

Unicode Name: Latin Small Letter U With Diaeresisn

ü

Shortcodes

Copy useful codes for u with two dots symbol ü to use in websites, apps, blogs, and docs.

Unicode
U+00FC
Alt Code
252
HTML Code
ü
HTML Entity
ü
HEX Code
ü
CSS Code
\00FC
JS/JSON
\u00FC
Unix/C/PHP/JAVA
0xFC
URL-encode
%C3%BC

Customize U with two Dots

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

ü
  

How to use U with two Dots Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>ü</span>
HTML Code:
<span>&#252;</span>
HTML Entity:
<span>&uuml;</span>
HEX Code:
<span>&#x00FC;</span>

Add with CSS

.u-with-two-dots::before {
  content: '\\00FC';
}

Set it in JavaScript

document.querySelector('.u-with-two-dots').textContent = 'ü';
copied