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