C:
char c = '\u0388';
printf("%c\n", c); // Output: Έ
JavaScript:
const char = '\u0388';
console.log(char); // Output: Έ
Java:
char c = '\u0388';
System.out.println(c); // Output: Έ
JSON:
{"text": "\u0388"} // Value: Έ
Python:
char = '\u0388'
print(char) # Output: Έ
Perl:
my $char = "\x{0388}";
print $char; # Output: Έ
PHP:
$char = "\x{0388}";
echo $char; // Output: Έ
Ruby:
char = "\u{0388}"
puts char # Output: Έ
Rust:
let c = '\u{388}';
println!("{}", c); // Output: Έ
Go:
char := '\u0388'
fmt.Printf("%c\n", char) // Output: Έ
CSS:
/* CSS content property */
.element::before {
content: "\000388"; /* 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%88
MD5:
6276ade8959ee37b8d2e206d4ef01ce0
SHA1:
31ffe2297931faedc3a2eb6bfd772aac35ca3537
Base64:
zog=