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