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