C:
char c = '\u5853';
printf("%c\n", c); // Output: 塓
JavaScript:
const char = '\u5853';
console.log(char); // Output: 塓
Java:
char c = '\u5853';
System.out.println(c); // Output: 塓
JSON:
{"text": "\u5853"} // Value: 塓
Python:
char = '\u5853'
print(char) # Output: 塓
Perl:
my $char = "\x{5853}";
print $char; # Output: 塓
PHP:
$char = "\x{5853}";
echo $char; // Output: 塓
Ruby:
char = "\u{5853}"
puts char # Output: 塓
Rust:
let c = '\u{5853}';
println!("{}", c); // Output: 塓
Go:
char := '\u5853'
fmt.Printf("%c\n", char) // Output: 塓
CSS:
/* CSS content property */
.element::before {
content: "\005853"; /* 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%93
MD5:
d574c32b060fef818b9952ded8cd171f
SHA1:
74a75d6a6b2011f3d2c06be537a42b12fd7c1936
Base64:
5aGT