C:
char c = '\u5852';
printf("%c\n", c); // Output: 塒
JavaScript:
const char = '\u5852';
console.log(char); // Output: 塒
Java:
char c = '\u5852';
System.out.println(c); // Output: 塒
JSON:
{"text": "\u5852"} // Value: 塒
Python:
char = '\u5852'
print(char) # Output: 塒
Perl:
my $char = "\x{5852}";
print $char; # Output: 塒
PHP:
$char = "\x{5852}";
echo $char; // Output: 塒
Ruby:
char = "\u{5852}"
puts char # Output: 塒
Rust:
let c = '\u{5852}';
println!("{}", c); // Output: 塒
Go:
char := '\u5852'
fmt.Printf("%c\n", char) // Output: 塒
CSS:
/* CSS content property */
.element::before {
content: "\005852"; /* 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%92
MD5:
e27a4fad66090f3ef8817c621bb6673b
SHA1:
8f8137eb6440145b6cc4bfc0c027059185153bcb
Base64:
5aGS