C:
char c = '\u7BA7';
printf("%c\n", c); // Output: 箧
JavaScript:
const char = '\u7BA7';
console.log(char); // Output: 箧
Java:
char c = '\u7BA7';
System.out.println(c); // Output: 箧
JSON:
{"text": "\u7BA7"} // Value: 箧
Python:
char = '\u7BA7'
print(char) # Output: 箧
Perl:
my $char = "\x{7BA7}";
print $char; # Output: 箧
PHP:
$char = "\x{7BA7}";
echo $char; // Output: 箧
Ruby:
char = "\u{7BA7}"
puts char # Output: 箧
Rust:
let c = '\u{7BA7}';
println!("{}", c); // Output: 箧
Go:
char := '\u7BA7'
fmt.Printf("%c\n", char) // Output: 箧
CSS:
/* CSS content property */
.element::before {
content: "\007BA7"; /* 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=%E7%AE%A7
MD5:
0a919fdbb6185e0ee004773b0fef89f1
SHA1:
e4cfdd8d33b380397006588ae309a244329686b4
Base64:
566n