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