C:
char c = '\u0177';
printf("%c\n", c); // Output: ŷ
JavaScript:
const char = '\u0177';
console.log(char); // Output: ŷ
Java:
char c = '\u0177';
System.out.println(c); // Output: ŷ
JSON:
{"text": "\u0177"} // Value: ŷ
Python:
char = '\u0177'
print(char) # Output: ŷ
Perl:
my $char = "\x{0177}";
print $char; # Output: ŷ
PHP:
$char = "\x{0177}";
echo $char; // Output: ŷ
Ruby:
char = "\u{0177}"
puts char # Output: ŷ
Rust:
let c = '\u{177}';
println!("{}", c); // Output: ŷ
Go:
char := '\u0177'
fmt.Printf("%c\n", char) // Output: ŷ
CSS:
/* CSS content property */
.element::before {
content: "\000177"; /* 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%B7
MD5:
e99bd6cfc8d0106793d7bf5fd261f2fa
SHA1:
7b3785470360afa1be2ebd4ef10cf56d23899f1b
Base64:
xbc=