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