Unicode Finder

"Ü" U+00DC(LATIN CAPITAL LETTER U WITH DIAERESIS)

Ü
U+00DC
Blockname
Latin-1 Supplement
Name
LATIN CAPITAL LETTER U WITH DIAERESIS

Programming

C
\u00DC
JavaScript
\u00DC
Java
\u00DC
Json
\u00DC
Python
\u00DC
Perl
\x{00DC}
PHP
\x{00DC}
Ruby
\u{00DC}
Rust
\u{DC}
Go
\u00DC

Web

CSS
\0000DC
HtmlDecimal
Ü
HtmlHexadecimal
Ü
Url
%C3%9C

Code

MD5
68b88d4a74d6893e96c6edc1144ceb7a
Sha1
4d57f0c087e7ee332a1e2dd9d0fd59d817208c10
Base64
w5w=

Verwendungsbeispiele

Programming Languages

C:

char c = '\u00DC';
printf("%c\n", c);  // Output: Ü

JavaScript:

const char = '\u00DC';
console.log(char);  // Output: Ü

Java:

char c = '\u00DC';
System.out.println(c);  // Output: Ü

JSON:

{"text": "\u00DC"}  // Value: Ü

Python:

char = '\u00DC'
print(char)  # Output: Ü

Perl:

my $char = "\x{00DC}";
print $char;  # Output: Ü

PHP:

$char = "\x{00DC}";
echo $char;  // Output: Ü

Ruby:

char = "\u{00DC}"
puts char  # Output: Ü

Rust:

let c = '\u{DC}';
println!("{}", c);  // Output: Ü

Go:

char := '\u00DC'
fmt.Printf("%c\n", char)  // Output: Ü

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0000DC";  /* Display: Ü */
}

HTML Decimal:

<p>HTML decimal: &#220;</p>  <!-- Display: Ü -->

HTML Hexadecimal:

<p>HTML hex: &#x00DC;</p>  <!-- Display: Ü -->

URL Encoding:

// Ü URL encoding
https://unicodefinder.com/search.php?query=%C3%9C

Encodings

MD5:

68b88d4a74d6893e96c6edc1144ceb7a

SHA1:

4d57f0c087e7ee332a1e2dd9d0fd59d817208c10

Base64:

w5w=