C:
char c = '\u5847';
printf("%c\n", c); // Output: 塇
JavaScript:
const char = '\u5847';
console.log(char); // Output: 塇
Java:
char c = '\u5847';
System.out.println(c); // Output: 塇
JSON:
{"text": "\u5847"} // Value: 塇
Python:
char = '\u5847'
print(char) # Output: 塇
Perl:
my $char = "\x{5847}";
print $char; # Output: 塇
PHP:
$char = "\x{5847}";
echo $char; // Output: 塇
Ruby:
char = "\u{5847}"
puts char # Output: 塇
Rust:
let c = '\u{5847}';
println!("{}", c); // Output: 塇
Go:
char := '\u5847'
fmt.Printf("%c\n", char) // Output: 塇
CSS:
/* CSS content property */
.element::before {
content: "\005847"; /* 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%87
MD5:
c208d50126300f42f1cfb0aa04476b92
SHA1:
08abeb7f8188643582290d810d0df1de116c11b6
Base64:
5aGH