C:
char c = '\u5845';
printf("%c\n", c); // Output: 塅
JavaScript:
const char = '\u5845';
console.log(char); // Output: 塅
Java:
char c = '\u5845';
System.out.println(c); // Output: 塅
JSON:
{"text": "\u5845"} // Value: 塅
Python:
char = '\u5845'
print(char) # Output: 塅
Perl:
my $char = "\x{5845}";
print $char; # Output: 塅
PHP:
$char = "\x{5845}";
echo $char; // Output: 塅
Ruby:
char = "\u{5845}"
puts char # Output: 塅
Rust:
let c = '\u{5845}';
println!("{}", c); // Output: 塅
Go:
char := '\u5845'
fmt.Printf("%c\n", char) // Output: 塅
CSS:
/* CSS content property */
.element::before {
content: "\005845"; /* 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%85
MD5:
163778faa1023c5ffcab623c2dc6b173
SHA1:
64a9a680e88e5765bc88ad612c7494c044ed36c1
Base64:
5aGF