C:
char c = '\u5322';
printf("%c\n", c); // Output: 匢
JavaScript:
const char = '\u5322';
console.log(char); // Output: 匢
Java:
char c = '\u5322';
System.out.println(c); // Output: 匢
JSON:
{"text": "\u5322"} // Value: 匢
Python:
char = '\u5322'
print(char) # Output: 匢
Perl:
my $char = "\x{5322}";
print $char; # Output: 匢
PHP:
$char = "\x{5322}";
echo $char; // Output: 匢
Ruby:
char = "\u{5322}"
puts char # Output: 匢
Rust:
let c = '\u{5322}';
println!("{}", c); // Output: 匢
Go:
char := '\u5322'
fmt.Printf("%c\n", char) // Output: 匢
CSS:
/* CSS content property */
.element::before {
content: "\005322"; /* 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=%E5%8C%A2
MD5:
fc6ce7c256cdd0ef77c1680f87cad3e1
SHA1:
387ad8407bff0bcfba1bb176324b7ef63b457651
Base64:
5Yyi