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