C:
char c = '\u03AD';
printf("%c\n", c); // Output: έ
JavaScript:
const char = '\u03AD';
console.log(char); // Output: έ
Java:
char c = '\u03AD';
System.out.println(c); // Output: έ
JSON:
{"text": "\u03AD"} // Value: έ
Python:
char = '\u03AD'
print(char) # Output: έ
Perl:
my $char = "\x{03AD}";
print $char; # Output: έ
PHP:
$char = "\x{03AD}";
echo $char; // Output: έ
Ruby:
char = "\u{03AD}"
puts char # Output: έ
Rust:
let c = '\u{3AD}';
println!("{}", c); // Output: έ
Go:
char := '\u03AD'
fmt.Printf("%c\n", char) // Output: έ
CSS:
/* CSS content property */
.element::before {
content: "\0003AD"; /* 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%AD
MD5:
edcf32c27d4c1fe472d348b962105dee
SHA1:
dcf408eec84d40d72130669c44f66e85fe095fc5
Base64:
zq0=