C:
char c = '\uAA7F';
printf("%c\n", c); // Output: ꩿ
JavaScript:
const char = '\uAA7F';
console.log(char); // Output: ꩿ
Java:
char c = '\uAA7F';
System.out.println(c); // Output: ꩿ
JSON:
{"text": "\uAA7F"} // Value: ꩿ
Python:
char = '\uAA7F'
print(char) # Output: ꩿ
Perl:
my $char = "\x{AA7F}";
print $char; # Output: ꩿ
PHP:
$char = "\x{AA7F}";
echo $char; // Output: ꩿ
Ruby:
char = "\u{AA7F}"
puts char # Output: ꩿ
Rust:
let c = '\u{AA7F}';
println!("{}", c); // Output: ꩿ
Go:
char := '\uAA7F'
fmt.Printf("%c\n", char) // Output: ꩿ
CSS:
/* CSS content property */
.element::before {
content: "\00AA7F"; /* 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%A9%BF
MD5:
23222d69608dafa250e35b3d1262fd24
SHA1:
2a93e2b64657c8416d0f6bfd988e0ded54c0334e
Base64:
6qm/