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