C:
char c = '\u7B96';
printf("%c\n", c); // Output: 箖
JavaScript:
const char = '\u7B96';
console.log(char); // Output: 箖
Java:
char c = '\u7B96';
System.out.println(c); // Output: 箖
JSON:
{"text": "\u7B96"} // Value: 箖
Python:
char = '\u7B96'
print(char) # Output: 箖
Perl:
my $char = "\x{7B96}";
print $char; # Output: 箖
PHP:
$char = "\x{7B96}";
echo $char; // Output: 箖
Ruby:
char = "\u{7B96}"
puts char # Output: 箖
Rust:
let c = '\u{7B96}';
println!("{}", c); // Output: 箖
Go:
char := '\u7B96'
fmt.Printf("%c\n", char) // Output: 箖
CSS:
/* CSS content property */
.element::before {
content: "\007B96"; /* 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%96
MD5:
531321c0eaaaab4c49611cc23bf5bc16
SHA1:
30f5563ea0e5c10bb1f984faf22ec075ef2baa5c
Base64:
566W