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