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