C:
char c = '\uABE4';
printf("%c\n", c); // Output: ꯤ
JavaScript:
const char = '\uABE4';
console.log(char); // Output: ꯤ
Java:
char c = '\uABE4';
System.out.println(c); // Output: ꯤ
JSON:
{"text": "\uABE4"} // Value: ꯤ
Python:
char = '\uABE4'
print(char) # Output: ꯤ
Perl:
my $char = "\x{ABE4}";
print $char; # Output: ꯤ
PHP:
$char = "\x{ABE4}";
echo $char; // Output: ꯤ
Ruby:
char = "\u{ABE4}"
puts char # Output: ꯤ
Rust:
let c = '\u{ABE4}';
println!("{}", c); // Output: ꯤ
Go:
char := '\uABE4'
fmt.Printf("%c\n", char) // Output: ꯤ
CSS:
/* CSS content property */
.element::before {
content: "\00ABE4"; /* 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%AF%A4
MD5:
34dce14ee38baa314716eeef61b0ae58
SHA1:
b888cd1901f953741112e3032d89ec8e19cc9ffb
Base64:
6q+k