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