C:
char c = '\uA089';
printf("%c\n", c); // Output: ꂉ
JavaScript:
const char = '\uA089';
console.log(char); // Output: ꂉ
Java:
char c = '\uA089';
System.out.println(c); // Output: ꂉ
JSON:
{"text": "\uA089"} // Value: ꂉ
Python:
char = '\uA089'
print(char) # Output: ꂉ
Perl:
my $char = "\x{A089}";
print $char; # Output: ꂉ
PHP:
$char = "\x{A089}";
echo $char; // Output: ꂉ
Ruby:
char = "\u{A089}"
puts char # Output: ꂉ
Rust:
let c = '\u{A089}';
println!("{}", c); // Output: ꂉ
Go:
char := '\uA089'
fmt.Printf("%c\n", char) // Output: ꂉ
CSS:
/* CSS content property */
.element::before {
content: "\00A089"; /* 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%82%89
MD5:
d2aca4ae086e81000cdef495364c32bc
SHA1:
9579792c115e4e3e27c3c586222eee90a3c93e55
Base64:
6oKJ