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