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