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