C:
char c = '\u5E8C';
printf("%c\n", c); // Output: 庌
JavaScript:
const char = '\u5E8C';
console.log(char); // Output: 庌
Java:
char c = '\u5E8C';
System.out.println(c); // Output: 庌
JSON:
{"text": "\u5E8C"} // Value: 庌
Python:
char = '\u5E8C'
print(char) # Output: 庌
Perl:
my $char = "\x{5E8C}";
print $char; # Output: 庌
PHP:
$char = "\x{5E8C}";
echo $char; // Output: 庌
Ruby:
char = "\u{5E8C}"
puts char # Output: 庌
Rust:
let c = '\u{5E8C}';
println!("{}", c); // Output: 庌
Go:
char := '\u5E8C'
fmt.Printf("%c\n", char) // Output: 庌
CSS:
/* CSS content property */
.element::before {
content: "\005E8C"; /* 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%BA%8C
MD5:
3142ebc5c37e66fc5b569be8a754fa30
SHA1:
78481361511ef1e1af6e6065540243f714fa5e92
Base64:
5bqM