C:
char c = '\u7BB7';
printf("%c\n", c); // Output: 箷
JavaScript:
const char = '\u7BB7';
console.log(char); // Output: 箷
Java:
char c = '\u7BB7';
System.out.println(c); // Output: 箷
JSON:
{"text": "\u7BB7"} // Value: 箷
Python:
char = '\u7BB7'
print(char) # Output: 箷
Perl:
my $char = "\x{7BB7}";
print $char; # Output: 箷
PHP:
$char = "\x{7BB7}";
echo $char; // Output: 箷
Ruby:
char = "\u{7BB7}"
puts char # Output: 箷
Rust:
let c = '\u{7BB7}';
println!("{}", c); // Output: 箷
Go:
char := '\u7BB7'
fmt.Printf("%c\n", char) // Output: 箷
CSS:
/* CSS content property */
.element::before {
content: "\007BB7"; /* 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%B7
MD5:
b4d9c88deb0885d4b633085f6e667ed2
SHA1:
8d9037081d91269ff168d8bf9993d9b95a46b1be
Base64:
5663