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