C:
char c = '\u5BBA';
printf("%c\n", c); // Output: 宺
JavaScript:
const char = '\u5BBA';
console.log(char); // Output: 宺
Java:
char c = '\u5BBA';
System.out.println(c); // Output: 宺
JSON:
{"text": "\u5BBA"} // Value: 宺
Python:
char = '\u5BBA'
print(char) # Output: 宺
Perl:
my $char = "\x{5BBA}";
print $char; # Output: 宺
PHP:
$char = "\x{5BBA}";
echo $char; // Output: 宺
Ruby:
char = "\u{5BBA}"
puts char # Output: 宺
Rust:
let c = '\u{5BBA}';
println!("{}", c); // Output: 宺
Go:
char := '\u5BBA'
fmt.Printf("%c\n", char) // Output: 宺
CSS:
/* CSS content property */
.element::before {
content: "\005BBA"; /* 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%BA
MD5:
32fb00e8bba0d9af494962b4e5166118
SHA1:
ffa5d53f742961e37223bc0b5ee9e859eed2b105
Base64:
5a66