C:
char c = '\u5848';
printf("%c\n", c); // Output: 塈
JavaScript:
const char = '\u5848';
console.log(char); // Output: 塈
Java:
char c = '\u5848';
System.out.println(c); // Output: 塈
JSON:
{"text": "\u5848"} // Value: 塈
Python:
char = '\u5848'
print(char) # Output: 塈
Perl:
my $char = "\x{5848}";
print $char; # Output: 塈
PHP:
$char = "\x{5848}";
echo $char; // Output: 塈
Ruby:
char = "\u{5848}"
puts char # Output: 塈
Rust:
let c = '\u{5848}';
println!("{}", c); // Output: 塈
Go:
char := '\u5848'
fmt.Printf("%c\n", char) // Output: 塈
CSS:
/* CSS content property */
.element::before {
content: "\005848"; /* 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%88
MD5:
2c02ed7ee26037ac354c72a9b8e13fdc
SHA1:
c3f9b61c4ef9374247d89b8e6e1cacae42f9d2e8
Base64:
5aGI