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