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