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