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