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