C:
char c = '\u5314';
printf("%c\n", c); // Output: 匔
JavaScript:
const char = '\u5314';
console.log(char); // Output: 匔
Java:
char c = '\u5314';
System.out.println(c); // Output: 匔
JSON:
{"text": "\u5314"} // Value: 匔
Python:
char = '\u5314'
print(char) # Output: 匔
Perl:
my $char = "\x{5314}";
print $char; # Output: 匔
PHP:
$char = "\x{5314}";
echo $char; // Output: 匔
Ruby:
char = "\u{5314}"
puts char # Output: 匔
Rust:
let c = '\u{5314}';
println!("{}", c); // Output: 匔
Go:
char := '\u5314'
fmt.Printf("%c\n", char) // Output: 匔
CSS:
/* CSS content property */
.element::before {
content: "\005314"; /* 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%94
MD5:
1c08cab02613f1d5f2c845d7451a1867
SHA1:
81b1628d45b1e2eae788bca2bc58314586e683e2
Base64:
5YyU