C:
char c = '\u7BB2';
printf("%c\n", c); // Output: 箲
JavaScript:
const char = '\u7BB2';
console.log(char); // Output: 箲
Java:
char c = '\u7BB2';
System.out.println(c); // Output: 箲
JSON:
{"text": "\u7BB2"} // Value: 箲
Python:
char = '\u7BB2'
print(char) # Output: 箲
Perl:
my $char = "\x{7BB2}";
print $char; # Output: 箲
PHP:
$char = "\x{7BB2}";
echo $char; // Output: 箲
Ruby:
char = "\u{7BB2}"
puts char # Output: 箲
Rust:
let c = '\u{7BB2}';
println!("{}", c); // Output: 箲
Go:
char := '\u7BB2'
fmt.Printf("%c\n", char) // Output: 箲
CSS:
/* CSS content property */
.element::before {
content: "\007BB2"; /* 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%B2
MD5:
8294df6bd31470e54c273dde7d2e696f
SHA1:
869715fb3d14ad170a6cfaa3f4623e7a941e920a
Base64:
566y