C:
char c = '\u8058';
printf("%c\n", c); // Output: 聘
JavaScript:
const char = '\u8058';
console.log(char); // Output: 聘
Java:
char c = '\u8058';
System.out.println(c); // Output: 聘
JSON:
{"text": "\u8058"} // Value: 聘
Python:
char = '\u8058'
print(char) # Output: 聘
Perl:
my $char = "\x{8058}";
print $char; # Output: 聘
PHP:
$char = "\x{8058}";
echo $char; // Output: 聘
Ruby:
char = "\u{8058}"
puts char # Output: 聘
Rust:
let c = '\u{8058}';
println!("{}", c); // Output: 聘
Go:
char := '\u8058'
fmt.Printf("%c\n", char) // Output: 聘
CSS:
/* CSS content property */
.element::before {
content: "\008058"; /* 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=%E8%81%98
MD5:
ca85f0d94a71cdfe045ea882e723d43d
SHA1:
6f9f7011e93e006acf0884f748ec809ef657b3bf
Base64:
6IGY