C:
char c = '\uAB57';
printf("%c\n", c); // Output: ꭗ
JavaScript:
const char = '\uAB57';
console.log(char); // Output: ꭗ
Java:
char c = '\uAB57';
System.out.println(c); // Output: ꭗ
JSON:
{"text": "\uAB57"} // Value: ꭗ
Python:
char = '\uAB57'
print(char) # Output: ꭗ
Perl:
my $char = "\x{AB57}";
print $char; # Output: ꭗ
PHP:
$char = "\x{AB57}";
echo $char; // Output: ꭗ
Ruby:
char = "\u{AB57}"
puts char # Output: ꭗ
Rust:
let c = '\u{AB57}';
println!("{}", c); // Output: ꭗ
Go:
char := '\uAB57'
fmt.Printf("%c\n", char) // Output: ꭗ
CSS:
/* CSS content property */
.element::before {
content: "\00AB57"; /* 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%AD%97
MD5:
c91aaa8b0f40d315de2bcbdba2895389
SHA1:
0b6e8f53bd944a98091d739c3f0bbbd015b372f1
Base64:
6q2X