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