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