C:
char c = '\u5311';
printf("%c\n", c); // Output: 匑
JavaScript:
const char = '\u5311';
console.log(char); // Output: 匑
Java:
char c = '\u5311';
System.out.println(c); // Output: 匑
JSON:
{"text": "\u5311"} // Value: 匑
Python:
char = '\u5311'
print(char) # Output: 匑
Perl:
my $char = "\x{5311}";
print $char; # Output: 匑
PHP:
$char = "\x{5311}";
echo $char; // Output: 匑
Ruby:
char = "\u{5311}"
puts char # Output: 匑
Rust:
let c = '\u{5311}';
println!("{}", c); // Output: 匑
Go:
char := '\u5311'
fmt.Printf("%c\n", char) // Output: 匑
CSS:
/* CSS content property */
.element::before {
content: "\005311"; /* 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%91
MD5:
01ea0c8b27497fe9744f5c579bd105fe
SHA1:
8e26866bb41ca9ff1bcc7d5e430a29522f1404e6
Base64:
5YyR