C:
char c = '\u5BB4';
printf("%c\n", c); // Output: 宴
JavaScript:
const char = '\u5BB4';
console.log(char); // Output: 宴
Java:
char c = '\u5BB4';
System.out.println(c); // Output: 宴
JSON:
{"text": "\u5BB4"} // Value: 宴
Python:
char = '\u5BB4'
print(char) # Output: 宴
Perl:
my $char = "\x{5BB4}";
print $char; # Output: 宴
PHP:
$char = "\x{5BB4}";
echo $char; // Output: 宴
Ruby:
char = "\u{5BB4}"
puts char # Output: 宴
Rust:
let c = '\u{5BB4}';
println!("{}", c); // Output: 宴
Go:
char := '\u5BB4'
fmt.Printf("%c\n", char) // Output: 宴
CSS:
/* CSS content property */
.element::before {
content: "\005BB4"; /* 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%AE%B4
MD5:
a19a8aa6c677f4fd7c517439a80469ad
SHA1:
eef50cce2d8a34cf52225ccf09b2bd0aea351f3d
Base64:
5a60