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