Unicode Finder

"W" U+0057(LATIN CAPITAL LETTER W)

W
U+0057
Block Name
Basic Latin
Name
LATIN CAPITAL LETTER W

Programming

C
\u0057
JavaScript
\u0057
Java
\u0057
Json
\u0057
Python
\u0057
Perl
\x{0057}
PHP
\x{0057}
Ruby
\u{0057}
Rust
\u{57}
Go
\u0057

Web

CSS
\000057
HtmlDecimal
W
HtmlHexadecimal
W
Url
W

Code

MD5
61e9c06ea9a85a5088a499df6458d276
Sha1
e2415cb7f63df0c9de23362326ad3c37a9adfc96
Base64
Vw==

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u0057';
console.log(char);  // Output: W

Java:

char c = '\u0057';
System.out.println(c);  // Output: W

JSON:

{"text": "\u0057"}  // Value: W

Python:

char = '\u0057'
print(char)  # Output: W

Perl:

my $char = "\x{0057}";
print $char;  # Output: W

PHP:

$char = "\x{0057}";
echo $char;  // Output: W

Ruby:

char = "\u{0057}"
puts char  # Output: W

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000057";  /* Display: W */
}

HTML Decimal:

<p>HTML decimal: &#87;</p>  <!-- Display: W -->

HTML Hexadecimal:

<p>HTML hex: &#x0057;</p>  <!-- Display: W -->

URL Encoding:

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

Encodings

MD5:

61e9c06ea9a85a5088a499df6458d276

SHA1:

e2415cb7f63df0c9de23362326ad3c37a9adfc96

Base64:

Vw==