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