C:
char c = '\u5850';
printf("%c\n", c); // Output: 塐
JavaScript:
const char = '\u5850';
console.log(char); // Output: 塐
Java:
char c = '\u5850';
System.out.println(c); // Output: 塐
JSON:
{"text": "\u5850"} // Value: 塐
Python:
char = '\u5850'
print(char) # Output: 塐
Perl:
my $char = "\x{5850}";
print $char; # Output: 塐
PHP:
$char = "\x{5850}";
echo $char; // Output: 塐
Ruby:
char = "\u{5850}"
puts char # Output: 塐
Rust:
let c = '\u{5850}';
println!("{}", c); // Output: 塐
Go:
char := '\u5850'
fmt.Printf("%c\n", char) // Output: 塐
CSS:
/* CSS content property */
.element::before {
content: "\005850"; /* 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%90
MD5:
eaf6b8a87e199079b28385a0a9925dad
SHA1:
3afb198a0003518e37d034983bf5b15929caa925
Base64:
5aGQ