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