Unicode Finder

"Ŵ" U+0174(LATIN CAPITAL LETTER W WITH CIRCUMFLEX)

Ŵ
U+0174
Nume Bloc
Latin Extended-A
Nume
LATIN CAPITAL LETTER W WITH CIRCUMFLEX

Programming

C
\u0174
JavaScript
\u0174
Java
\u0174
Json
\u0174
Python
\u0174
Perl
\x{0174}
PHP
\x{0174}
Ruby
\u{0174}
Rust
\u{174}
Go
\u0174

Web

CSS
\000174
HtmlDecimal
Ŵ
HtmlHexadecimal
Ŵ
Url
%C5%B4

Code

MD5
f562ee1dca027bfba6955f73c8c14c99
Sha1
a8975b86c2677ad22128f0369c1d95004fada0c9
Base64
xbQ=

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u0174';
console.log(char);  // Output: Ŵ

Java:

char c = '\u0174';
System.out.println(c);  // Output: Ŵ

JSON:

{"text": "\u0174"}  // Value: Ŵ

Python:

char = '\u0174'
print(char)  # Output: Ŵ

Perl:

my $char = "\x{0174}";
print $char;  # Output: Ŵ

PHP:

$char = "\x{0174}";
echo $char;  // Output: Ŵ

Ruby:

char = "\u{0174}"
puts char  # Output: Ŵ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000174";  /* Display: Ŵ */
}

HTML Decimal:

<p>HTML decimal: &#372;</p>  <!-- Display: Ŵ -->

HTML Hexadecimal:

<p>HTML hex: &#x0174;</p>  <!-- Display: Ŵ -->

URL Encoding:

// Ŵ URL encoding
https://unicodefinder.com/search.php?query=%C5%B4

Encodings

MD5:

f562ee1dca027bfba6955f73c8c14c99

SHA1:

a8975b86c2677ad22128f0369c1d95004fada0c9

Base64:

xbQ=