Unicode Finder

"U" U+0055(LATIN CAPITAL LETTER U)

U
U+0055
Block Name
Basic Latin
Name
LATIN CAPITAL LETTER U

Programming

C
\u0055
JavaScript
\u0055
Java
\u0055
Json
\u0055
Python
\u0055
Perl
\x{0055}
PHP
\x{0055}
Ruby
\u{0055}
Rust
\u{55}
Go
\u0055

Web

CSS
\000055
HtmlDecimal
U
HtmlHexadecimal
U
Url
U

Code

MD5
4c614360da93c0a041b22e537de151eb
Sha1
b2c7c0caa10a0cca5ea7d69e54018ae0c0389dd6
Base64
VQ==

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u0055';
console.log(char);  // Output: U

Java:

char c = '\u0055';
System.out.println(c);  // Output: U

JSON:

{"text": "\u0055"}  // Value: U

Python:

char = '\u0055'
print(char)  # Output: U

Perl:

my $char = "\x{0055}";
print $char;  # Output: U

PHP:

$char = "\x{0055}";
echo $char;  // Output: U

Ruby:

char = "\u{0055}"
puts char  # Output: U

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000055";  /* Display: U */
}

HTML Decimal:

<p>HTML decimal: &#85;</p>  <!-- Display: U -->

HTML Hexadecimal:

<p>HTML hex: &#x0055;</p>  <!-- Display: U -->

URL Encoding:

// U URL encoding
https://unicodefinder.com/search.php?query=U

Encodings

MD5:

4c614360da93c0a041b22e537de151eb

SHA1:

b2c7c0caa10a0cca5ea7d69e54018ae0c0389dd6

Base64:

VQ==