C:
char c = '\u0389';
printf("%c\n", c); // Output: Ή
JavaScript:
const char = '\u0389';
console.log(char); // Output: Ή
Java:
char c = '\u0389';
System.out.println(c); // Output: Ή
JSON:
{"text": "\u0389"} // Value: Ή
Python:
char = '\u0389'
print(char) # Output: Ή
Perl:
my $char = "\x{0389}";
print $char; # Output: Ή
PHP:
$char = "\x{0389}";
echo $char; // Output: Ή
Ruby:
char = "\u{0389}"
puts char # Output: Ή
Rust:
let c = '\u{389}';
println!("{}", c); // Output: Ή
Go:
char := '\u0389'
fmt.Printf("%c\n", char) // Output: Ή
CSS:
/* CSS content property */
.element::before {
content: "\000389"; /* 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=%CE%89
MD5:
60251c3616459f3b6df853e27f700f7b
SHA1:
3fbf83e8e6ae53539ae643327d29d4decd589023
Base64:
zok=