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