C:
char c = '\u5325';
printf("%c\n", c); // Output: 匥
JavaScript:
const char = '\u5325';
console.log(char); // Output: 匥
Java:
char c = '\u5325';
System.out.println(c); // Output: 匥
JSON:
{"text": "\u5325"} // Value: 匥
Python:
char = '\u5325'
print(char) # Output: 匥
Perl:
my $char = "\x{5325}";
print $char; # Output: 匥
PHP:
$char = "\x{5325}";
echo $char; // Output: 匥
Ruby:
char = "\u{5325}"
puts char # Output: 匥
Rust:
let c = '\u{5325}';
println!("{}", c); // Output: 匥
Go:
char := '\u5325'
fmt.Printf("%c\n", char) // Output: 匥
CSS:
/* CSS content property */
.element::before {
content: "\005325"; /* 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%A5
MD5:
fbdb5c6693bb7c7877c572c4251ece98
SHA1:
074dd420429d405562cc6c07f1e23db89570e1e9
Base64:
5Yyl