C:
char c = '\u5849';
printf("%c\n", c); // Output: 塉
JavaScript:
const char = '\u5849';
console.log(char); // Output: 塉
Java:
char c = '\u5849';
System.out.println(c); // Output: 塉
JSON:
{"text": "\u5849"} // Value: 塉
Python:
char = '\u5849'
print(char) # Output: 塉
Perl:
my $char = "\x{5849}";
print $char; # Output: 塉
PHP:
$char = "\x{5849}";
echo $char; // Output: 塉
Ruby:
char = "\u{5849}"
puts char # Output: 塉
Rust:
let c = '\u{5849}';
println!("{}", c); // Output: 塉
Go:
char := '\u5849'
fmt.Printf("%c\n", char) // Output: 塉
CSS:
/* CSS content property */
.element::before {
content: "\005849"; /* 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%89
MD5:
62fe4ddb12e800e2e7d03a9aac12c60a
SHA1:
15a8f7934c105d283991955ecf77284930509816
Base64:
5aGJ