U with two Dots

Unicode Name: Latin Small Letter U With Diaeresis

ü

Shortcodes

Copy and paste codes for U with two Dots symbol ü to use in your websites, apps, blogs, and more.

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

Customize U with two Dots Symbol

Customize ü symbol as you like and download U with two Dots as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.
ü
 

How to type U with two Dots symbol ü ?

Using U with two Dots Alt Code:

You can type the U with two Dots symbol ü using your keyboard by using the Alt Code for U with two Dots. Before you begin, ensure that your Num Lock is turned on, and use the Numpad to type the code. Then, follow these simple steps:

  1. Hold down the Alt key on your keyboard.
  2. Type the number 252 using the Numpad.
  3. Release the Alt key.

This will make the ü appear on your screen.

How to add U with two Dots symbol in HTML, CSS, and JS?

Insert ü U with two Dots using HTML

1. Copy-paste U with two Dots directly:
<span>ü</span>
2. HTML Decimal Code:
<span>&#252;</span>
3. HTML Entity:
<span>&uuml;</span>
4. Hexadecimal Code:
<span>&#x00FC;</span>
Preview: ü

Add U with two Dots symbol with CSS

.u-with-two-dots::before {
    content: '\\0FC';
}
Preview: U with two Dots

U with two Dots JavaScript Code

1. Direct Symbol:
document.querySelector('.u-with-two-dots').textContent = 'ü';
2. Unicode Escape for ü:
document.querySelector('.u-with-two-dots').textContent = '\u00FC';
Preview: ü