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