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