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