C:
char c = '\u5864';
printf("%c\n", c); // Output: 塤
JavaScript:
const char = '\u5864';
console.log(char); // Output: 塤
Java:
char c = '\u5864';
System.out.println(c); // Output: 塤
JSON:
{"text": "\u5864"} // Value: 塤
Python:
char = '\u5864'
print(char) # Output: 塤
Perl:
my $char = "\x{5864}";
print $char; # Output: 塤
PHP:
$char = "\x{5864}";
echo $char; // Output: 塤
Ruby:
char = "\u{5864}"
puts char # Output: 塤
Rust:
let c = '\u{5864}';
println!("{}", c); // Output: 塤
Go:
char := '\u5864'
fmt.Printf("%c\n", char) // Output: 塤
CSS:
/* CSS content property */
.element::before {
content: "\005864"; /* 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%A4
MD5:
0eec08fb9d4ec2f5696574747396bdea
SHA1:
2f0322fdffb5eb3d76298682de030ed31d35b06f
Base64:
5aGk