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