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