C:
char c = '\u0397';
printf("%c\n", c); // Output: Η
JavaScript:
const char = '\u0397';
console.log(char); // Output: Η
Java:
char c = '\u0397';
System.out.println(c); // Output: Η
JSON:
{"text": "\u0397"} // Value: Η
Python:
char = '\u0397'
print(char) # Output: Η
Perl:
my $char = "\x{0397}";
print $char; # Output: Η
PHP:
$char = "\x{0397}";
echo $char; // Output: Η
Ruby:
char = "\u{0397}"
puts char # Output: Η
Rust:
let c = '\u{397}';
println!("{}", c); // Output: Η
Go:
char := '\u0397'
fmt.Printf("%c\n", char) // Output: Η
CSS:
/* CSS content property */
.element::before {
content: "\000397"; /* 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%97
MD5:
a23c458f545fa4d5b3f89a33bd552337
SHA1:
5ffa86b248022980291eb9eb090ca61d7b787044
Base64:
zpc=