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