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