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