C:
char c = '\u0178';
printf("%c\n", c); // Output: Ÿ
JavaScript:
const char = '\u0178';
console.log(char); // Output: Ÿ
Java:
char c = '\u0178';
System.out.println(c); // Output: Ÿ
JSON:
{"text": "\u0178"} // Value: Ÿ
Python:
char = '\u0178'
print(char) # Output: Ÿ
Perl:
my $char = "\x{0178}";
print $char; # Output: Ÿ
PHP:
$char = "\x{0178}";
echo $char; // Output: Ÿ
Ruby:
char = "\u{0178}"
puts char # Output: Ÿ
Rust:
let c = '\u{178}';
println!("{}", c); // Output: Ÿ
Go:
char := '\u0178'
fmt.Printf("%c\n", char) // Output: Ÿ
CSS:
/* CSS content property */
.element::before {
content: "\000178"; /* 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%B8
MD5:
1f1f18a932d688df94d1b9cc7830164c
SHA1:
f5d8c06bfe0e3e35bb8ca88031d77e7028364c9c
Base64:
xbg=