C:
char c = '\u1FAE';
printf("%c\n", c); // Output: ᾮ
JavaScript:
const char = '\u1FAE';
console.log(char); // Output: ᾮ
Java:
char c = '\u1FAE';
System.out.println(c); // Output: ᾮ
JSON:
{"text": "\u1FAE"} // Value: ᾮ
Python:
char = '\u1FAE'
print(char) # Output: ᾮ
Perl:
my $char = "\x{1FAE}";
print $char; # Output: ᾮ
PHP:
$char = "\x{1FAE}";
echo $char; // Output: ᾮ
Ruby:
char = "\u{1FAE}"
puts char # Output: ᾮ
Rust:
let c = '\u{1FAE}';
println!("{}", c); // Output: ᾮ
Go:
char := '\u1FAE'
fmt.Printf("%c\n", char) // Output: ᾮ
CSS:
/* CSS content property */
.element::before {
content: "\001FAE"; /* 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=%E1%BE%AE
MD5:
1eb9d141935641aae8ae3d96396586fc
SHA1:
064678226661b718d264eb085d4f3aa8b9629bfd
Base64:
4b6u