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: Ŷ
CSS:
/* CSS content property */
.element::before {
content: "\000176"; /* Display: Ŷ */
}
HTML Decimal:
<p>HTML decimal: Ŷ</p> <!-- Display: Ŷ -->
HTML Hexadecimal:
<p>HTML hex: Ŷ</p> <!-- Display: Ŷ -->
URL Encoding:
// Ŷ URL encoding
https://unicodefinder.com/search.php?query=%C5%B6
MD5:
70fd8d40acde64b232a7800eca956fc8
SHA1:
85a18092f3cc5263b6001efb121f3721c0ebae5a
Base64:
xbY=