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