C:
char c = '\u1F55';
printf("%c\n", c); // Output: ὕ
JavaScript:
const char = '\u1F55';
console.log(char); // Output: ὕ
Java:
char c = '\u1F55';
System.out.println(c); // Output: ὕ
JSON:
{"text": "\u1F55"} // Value: ὕ
Python:
char = '\u1F55'
print(char) # Output: ὕ
Perl:
my $char = "\x{1F55}";
print $char; # Output: ὕ
PHP:
$char = "\x{1F55}";
echo $char; // Output: ὕ
Ruby:
char = "\u{1F55}"
puts char # Output: ὕ
Rust:
let c = '\u{1F55}';
println!("{}", c); // Output: ὕ
Go:
char := '\u1F55'
fmt.Printf("%c\n", char) // Output: ὕ
CSS:
/* CSS content property */
.element::before {
content: "\001F55"; /* 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=%E1%BD%95
MD5:
e75a963f3a7d7beb513f92ae6434fa4f
SHA1:
b7e4c3f02328082541f7ccad8187fa20ffeae901
Base64:
4b2V