C:
char c = '\uA86B';
printf("%c\n", c); // Output: ꡫ
JavaScript:
const char = '\uA86B';
console.log(char); // Output: ꡫ
Java:
char c = '\uA86B';
System.out.println(c); // Output: ꡫ
JSON:
{"text": "\uA86B"} // Value: ꡫ
Python:
char = '\uA86B'
print(char) # Output: ꡫ
Perl:
my $char = "\x{A86B}";
print $char; # Output: ꡫ
PHP:
$char = "\x{A86B}";
echo $char; // Output: ꡫ
Ruby:
char = "\u{A86B}"
puts char # Output: ꡫ
Rust:
let c = '\u{A86B}';
println!("{}", c); // Output: ꡫ
Go:
char := '\uA86B'
fmt.Printf("%c\n", char) // Output: ꡫ
CSS:
/* CSS content property */
.element::before {
content: "\00A86B"; /* 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=%EA%A1%AB
MD5:
96c9128279185c04d59d66b3206db052
SHA1:
e0d175fb0fd14d55b4cf0a5fde7285879cf89b94
Base64:
6qGr