C:
char c = '\u0395';
printf("%c\n", c); // Output: Ε
JavaScript:
const char = '\u0395';
console.log(char); // Output: Ε
Java:
char c = '\u0395';
System.out.println(c); // Output: Ε
JSON:
{"text": "\u0395"} // Value: Ε
Python:
char = '\u0395'
print(char) # Output: Ε
Perl:
my $char = "\x{0395}";
print $char; # Output: Ε
PHP:
$char = "\x{0395}";
echo $char; // Output: Ε
Ruby:
char = "\u{0395}"
puts char # Output: Ε
Rust:
let c = '\u{395}';
println!("{}", c); // Output: Ε
Go:
char := '\u0395'
fmt.Printf("%c\n", char) // Output: Ε
CSS:
/* CSS content property */
.element::before {
content: "\000395"; /* 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%95
MD5:
b6070f78f4bc56148c0d9880d752e442
SHA1:
036f059767315becdbfcf3ff998cd08cf1e33d26
Base64:
zpU=