C:
char c = '\u5458';
printf("%c\n", c); // Output: 员
JavaScript:
const char = '\u5458';
console.log(char); // Output: 员
Java:
char c = '\u5458';
System.out.println(c); // Output: 员
JSON:
{"text": "\u5458"} // Value: 员
Python:
char = '\u5458'
print(char) # Output: 员
Perl:
my $char = "\x{5458}";
print $char; # Output: 员
PHP:
$char = "\x{5458}";
echo $char; // Output: 员
Ruby:
char = "\u{5458}"
puts char # Output: 员
Rust:
let c = '\u{5458}';
println!("{}", c); // Output: 员
Go:
char := '\u5458'
fmt.Printf("%c\n", char) // Output: 员
CSS:
/* CSS content property */
.element::before {
content: "\005458"; /* 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%91%98
MD5:
d70ef8390ea5a535f7d6e63bd4022b76
SHA1:
17d723b70dfd972e2585f670d42b76877379cd9e
Base64:
5ZGY