C:
char c = '\u5C55';
printf("%c\n", c); // Output: 展
JavaScript:
const char = '\u5C55';
console.log(char); // Output: 展
Java:
char c = '\u5C55';
System.out.println(c); // Output: 展
JSON:
{"text": "\u5C55"} // Value: 展
Python:
char = '\u5C55'
print(char) # Output: 展
Perl:
my $char = "\x{5C55}";
print $char; # Output: 展
PHP:
$char = "\x{5C55}";
echo $char; // Output: 展
Ruby:
char = "\u{5C55}"
puts char # Output: 展
Rust:
let c = '\u{5C55}';
println!("{}", c); // Output: 展
Go:
char := '\u5C55'
fmt.Printf("%c\n", char) // Output: 展
CSS:
/* CSS content property */
.element::before {
content: "\005C55"; /* 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%B1%95
MD5:
272c321ef8a6ad9e732fc10ef1c0e2f9
SHA1:
4918c19fbc40086762e49edbdab619ebbc26fbfc
Base64:
5bGV