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