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