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