C:
char c = '\u7855';
printf("%c\n", c); // Output: 硕
JavaScript:
const char = '\u7855';
console.log(char); // Output: 硕
Java:
char c = '\u7855';
System.out.println(c); // Output: 硕
JSON:
{"text": "\u7855"} // Value: 硕
Python:
char = '\u7855'
print(char) # Output: 硕
Perl:
my $char = "\x{7855}";
print $char; # Output: 硕
PHP:
$char = "\x{7855}";
echo $char; // Output: 硕
Ruby:
char = "\u{7855}"
puts char # Output: 硕
Rust:
let c = '\u{7855}';
println!("{}", c); // Output: 硕
Go:
char := '\u7855'
fmt.Printf("%c\n", char) // Output: 硕
CSS:
/* CSS content property */
.element::before {
content: "\007855"; /* 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=%E7%A1%95
MD5:
fa6ef9851aedd70d0d90150a155d3f0f
SHA1:
29d0553a3739a51ca4c09538577b656e491f52c2
Base64:
56GV