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