C:
char c = '\u7B9E';
printf("%c\n", c); // Output: 箞
JavaScript:
const char = '\u7B9E';
console.log(char); // Output: 箞
Java:
char c = '\u7B9E';
System.out.println(c); // Output: 箞
JSON:
{"text": "\u7B9E"} // Value: 箞
Python:
char = '\u7B9E'
print(char) # Output: 箞
Perl:
my $char = "\x{7B9E}";
print $char; # Output: 箞
PHP:
$char = "\x{7B9E}";
echo $char; // Output: 箞
Ruby:
char = "\u{7B9E}"
puts char # Output: 箞
Rust:
let c = '\u{7B9E}';
println!("{}", c); // Output: 箞
Go:
char := '\u7B9E'
fmt.Printf("%c\n", char) // Output: 箞
CSS:
/* CSS content property */
.element::before {
content: "\007B9E"; /* 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%9E
MD5:
51b64f5eab116d85a8a04ba1bc95dd41
SHA1:
2ae98a49c50cf22ba279b4ff84d9317cbb802dad
Base64:
566e