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