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