C:
char c = '\u5318';
printf("%c\n", c); // Output: 匘
JavaScript:
const char = '\u5318';
console.log(char); // Output: 匘
Java:
char c = '\u5318';
System.out.println(c); // Output: 匘
JSON:
{"text": "\u5318"} // Value: 匘
Python:
char = '\u5318'
print(char) # Output: 匘
Perl:
my $char = "\x{5318}";
print $char; # Output: 匘
PHP:
$char = "\x{5318}";
echo $char; // Output: 匘
Ruby:
char = "\u{5318}"
puts char # Output: 匘
Rust:
let c = '\u{5318}';
println!("{}", c); // Output: 匘
Go:
char := '\u5318'
fmt.Printf("%c\n", char) // Output: 匘
CSS:
/* CSS content property */
.element::before {
content: "\005318"; /* 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%98
MD5:
ffcce08d8576c2ba57207a04685e39a1
SHA1:
790f9d96f09013d0a49dea8b58170e5bc8259a3f
Base64:
5YyY