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