Unicode Finder

"Ŷ" U+0176(LATIN CAPITAL LETTER Y WITH CIRCUMFLEX)

Ŷ
U+0176
Nazwa Bloku
Latin Extended-A
Nazwa
LATIN CAPITAL LETTER Y WITH CIRCUMFLEX

Programming

C
\u0176
JavaScript
\u0176
Java
\u0176
Json
\u0176
Python
\u0176
Perl
\x{0176}
PHP
\x{0176}
Ruby
\u{0176}
Rust
\u{176}
Go
\u0176

Web

CSS
\000176
HtmlDecimal
Ŷ
HtmlHexadecimal
Ŷ
Url
%C5%B6

Code

MD5
70fd8d40acde64b232a7800eca956fc8
Sha1
85a18092f3cc5263b6001efb121f3721c0ebae5a
Base64
xbY=

Przykłady Użycia

Programming Languages

C:

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

JavaScript:

const char = '\u0176';
console.log(char);  // Output: Ŷ

Java:

char c = '\u0176';
System.out.println(c);  // Output: Ŷ

JSON:

{"text": "\u0176"}  // Value: Ŷ

Python:

char = '\u0176'
print(char)  # Output: Ŷ

Perl:

my $char = "\x{0176}";
print $char;  # Output: Ŷ

PHP:

$char = "\x{0176}";
echo $char;  // Output: Ŷ

Ruby:

char = "\u{0176}"
puts char  # Output: Ŷ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000176";  /* Display: Ŷ */
}

HTML Decimal:

<p>HTML decimal: &#374;</p>  <!-- Display: Ŷ -->

HTML Hexadecimal:

<p>HTML hex: &#x0176;</p>  <!-- Display: Ŷ -->

URL Encoding:

// Ŷ URL encoding
https://unicodefinder.com/search.php?query=%C5%B6

Encodings

MD5:

70fd8d40acde64b232a7800eca956fc8

SHA1:

85a18092f3cc5263b6001efb121f3721c0ebae5a

Base64:

xbY=