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