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