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