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