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