C:
char c = '\u0386';
printf("%c\n", c); // Output: Ά
JavaScript:
const char = '\u0386';
console.log(char); // Output: Ά
Java:
char c = '\u0386';
System.out.println(c); // Output: Ά
JSON:
{"text": "\u0386"} // Value: Ά
Python:
char = '\u0386'
print(char) # Output: Ά
Perl:
my $char = "\x{0386}";
print $char; # Output: Ά
PHP:
$char = "\x{0386}";
echo $char; // Output: Ά
Ruby:
char = "\u{0386}"
puts char # Output: Ά
Rust:
let c = '\u{386}';
println!("{}", c); // Output: Ά
Go:
char := '\u0386'
fmt.Printf("%c\n", char) // Output: Ά
CSS:
/* CSS content property */
.element::before {
content: "\000386"; /* 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%86
MD5:
843522dc2a1df8965e7bfcaad07d0ce6
SHA1:
8c43c497486b6e48c0afdd578c45fb8edf9a68a0
Base64:
zoY=