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