C:
char c = '\u5854';
printf("%c\n", c); // Output: 塔
JavaScript:
const char = '\u5854';
console.log(char); // Output: 塔
Java:
char c = '\u5854';
System.out.println(c); // Output: 塔
JSON:
{"text": "\u5854"} // Value: 塔
Python:
char = '\u5854'
print(char) # Output: 塔
Perl:
my $char = "\x{5854}";
print $char; # Output: 塔
PHP:
$char = "\x{5854}";
echo $char; // Output: 塔
Ruby:
char = "\u{5854}"
puts char # Output: 塔
Rust:
let c = '\u{5854}';
println!("{}", c); // Output: 塔
Go:
char := '\u5854'
fmt.Printf("%c\n", char) // Output: 塔
CSS:
/* CSS content property */
.element::before {
content: "\005854"; /* 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%94
MD5:
9a626a186f5ce819550da5e9c635901a
SHA1:
e8cf911a5cc930fc3536afd37c59e276c4b71f68
Base64:
5aGU