C:
char c = '\u5BBE';
printf("%c\n", c); // Output: 宾
JavaScript:
const char = '\u5BBE';
console.log(char); // Output: 宾
Java:
char c = '\u5BBE';
System.out.println(c); // Output: 宾
JSON:
{"text": "\u5BBE"} // Value: 宾
Python:
char = '\u5BBE'
print(char) # Output: 宾
Perl:
my $char = "\x{5BBE}";
print $char; # Output: 宾
PHP:
$char = "\x{5BBE}";
echo $char; // Output: 宾
Ruby:
char = "\u{5BBE}"
puts char # Output: 宾
Rust:
let c = '\u{5BBE}';
println!("{}", c); // Output: 宾
Go:
char := '\u5BBE'
fmt.Printf("%c\n", char) // Output: 宾
CSS:
/* CSS content property */
.element::before {
content: "\005BBE"; /* 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=%E5%AE%BE
MD5:
46938b2584bbf260e7b95b6ee01c0b17
SHA1:
8732fb12a27c7db9a66c0246209135fce4d3cd5e
Base64:
5a6+