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