C:
char c = '\u5328';
printf("%c\n", c); // Output: 匨
JavaScript:
const char = '\u5328';
console.log(char); // Output: 匨
Java:
char c = '\u5328';
System.out.println(c); // Output: 匨
JSON:
{"text": "\u5328"} // Value: 匨
Python:
char = '\u5328'
print(char) # Output: 匨
Perl:
my $char = "\x{5328}";
print $char; # Output: 匨
PHP:
$char = "\x{5328}";
echo $char; // Output: 匨
Ruby:
char = "\u{5328}"
puts char # Output: 匨
Rust:
let c = '\u{5328}';
println!("{}", c); // Output: 匨
Go:
char := '\u5328'
fmt.Printf("%c\n", char) // Output: 匨
CSS:
/* CSS content property */
.element::before {
content: "\005328"; /* 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%A8
MD5:
12741c169480be63ebdcdb8825086d2c
SHA1:
21d755f12e069a44e370c032c21b5fa70924acab
Base64:
5Yyo