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 ü 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 Alt code 252 using the Numpad.
  3. Release the Alt key.

This will make the ü appear on your screen.

Alternative Methods:

  • You can try inserting U with two Dots symbol using these system tools:
    • Mac Character Viewer (Control + Command + Space)
    • Windows Emoji/Symbol Picker (Win + .)
    • Windows Character Map (charmap.exe)
  • Note: These tools may not include all Unicode symbols
  • Copy and paste the ü symbol directly from this website.
  • Use provided codes for U with two Dots symbol where they are supported.

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

HTML Methods:

1. Direct Symbol:
<span>ü</span>
2. HTML Decimal Code:
<span>&#252;</span>
3. HTML Entity:
<span>&uuml;</span>
4. Hexadecimal Code:
<span>&#x00FC;</span>
Preview: ü

CSS Method:

.symbol::before {
    content: '\\0FC';
}
Preview: Symbol

JavaScript Methods:

1. Direct Symbol:
document.querySelector('.symbol').textContent = 'ü';
2. Unicode Escape:
document.querySelector('.symbol').textContent = '\u00FC';
Preview: ü