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