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