C:
char c = '\u5851';
printf("%c\n", c); // Output: 塑
JavaScript:
const char = '\u5851';
console.log(char); // Output: 塑
Java:
char c = '\u5851';
System.out.println(c); // Output: 塑
JSON:
{"text": "\u5851"} // Value: 塑
Python:
char = '\u5851'
print(char) # Output: 塑
Perl:
my $char = "\x{5851}";
print $char; # Output: 塑
PHP:
$char = "\x{5851}";
echo $char; // Output: 塑
Ruby:
char = "\u{5851}"
puts char # Output: 塑
Rust:
let c = '\u{5851}';
println!("{}", c); // Output: 塑
Go:
char := '\u5851'
fmt.Printf("%c\n", char) // Output: 塑
CSS:
/* CSS content property */
.element::before {
content: "\005851"; /* 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%A1%91
MD5:
3b315fde37980adab637cdea3e60144b
SHA1:
e97a336364a83eb03d61d0a5418057605c111c2a
Base64:
5aGR