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