C:
char c = '\u1FB4';
printf("%c\n", c); // Output: ᾴ
JavaScript:
const char = '\u1FB4';
console.log(char); // Output: ᾴ
Java:
char c = '\u1FB4';
System.out.println(c); // Output: ᾴ
JSON:
{"text": "\u1FB4"} // Value: ᾴ
Python:
char = '\u1FB4'
print(char) # Output: ᾴ
Perl:
my $char = "\x{1FB4}";
print $char; # Output: ᾴ
PHP:
$char = "\x{1FB4}";
echo $char; // Output: ᾴ
Ruby:
char = "\u{1FB4}"
puts char # Output: ᾴ
Rust:
let c = '\u{1FB4}';
println!("{}", c); // Output: ᾴ
Go:
char := '\u1FB4'
fmt.Printf("%c\n", char) // Output: ᾴ
CSS:
/* CSS content property */
.element::before {
content: "\001FB4"; /* 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%B4
MD5:
f3dc02b51175ff68331482307631e89d
SHA1:
4359f820b654f44d4682ec2a0923fb3d5edc6689
Base64:
4b60