C:
char c = '\u5E19';
printf("%c\n", c); // Output: 帙
JavaScript:
const char = '\u5E19';
console.log(char); // Output: 帙
Java:
char c = '\u5E19';
System.out.println(c); // Output: 帙
JSON:
{"text": "\u5E19"} // Value: 帙
Python:
char = '\u5E19'
print(char) # Output: 帙
Perl:
my $char = "\x{5E19}";
print $char; # Output: 帙
PHP:
$char = "\x{5E19}";
echo $char; // Output: 帙
Ruby:
char = "\u{5E19}"
puts char # Output: 帙
Rust:
let c = '\u{5E19}';
println!("{}", c); // Output: 帙
Go:
char := '\u5E19'
fmt.Printf("%c\n", char) // Output: 帙
CSS:
/* CSS content property */
.element::before {
content: "\005E19"; /* 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%B8%99
MD5:
80909adde6be1d222c4cc67545a2ca46
SHA1:
2d3d979eaecaf9417f119f403aeedf62fed42156
Base64:
5biZ