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