C:
char c = '\uA86A';
printf("%c\n", c); // Output: ꡪ
JavaScript:
const char = '\uA86A';
console.log(char); // Output: ꡪ
Java:
char c = '\uA86A';
System.out.println(c); // Output: ꡪ
JSON:
{"text": "\uA86A"} // Value: ꡪ
Python:
char = '\uA86A'
print(char) # Output: ꡪ
Perl:
my $char = "\x{A86A}";
print $char; # Output: ꡪ
PHP:
$char = "\x{A86A}";
echo $char; // Output: ꡪ
Ruby:
char = "\u{A86A}"
puts char # Output: ꡪ
Rust:
let c = '\u{A86A}';
println!("{}", c); // Output: ꡪ
Go:
char := '\uA86A'
fmt.Printf("%c\n", char) // Output: ꡪ
CSS:
/* CSS content property */
.element::before {
content: "\00A86A"; /* 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%AA
MD5:
671fa7b7d6f05f81840bccad6124e994
SHA1:
07642fdb4743ac3decfbe9e4ef00ff509625ecf2
Base64:
6qGq