C:
char c = '\u5907';
printf("%c\n", c); // Output: 备
JavaScript:
const char = '\u5907';
console.log(char); // Output: 备
Java:
char c = '\u5907';
System.out.println(c); // Output: 备
JSON:
{"text": "\u5907"} // Value: 备
Python:
char = '\u5907'
print(char) # Output: 备
Perl:
my $char = "\x{5907}";
print $char; # Output: 备
PHP:
$char = "\x{5907}";
echo $char; // Output: 备
Ruby:
char = "\u{5907}"
puts char # Output: 备
Rust:
let c = '\u{5907}';
println!("{}", c); // Output: 备
Go:
char := '\u5907'
fmt.Printf("%c\n", char) // Output: 备
CSS:
/* CSS content property */
.element::before {
content: "\005907"; /* 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%A4%87
MD5:
bb93ed71f2bba2fa536a7ce7d5810a60
SHA1:
663b6e0d73072345ac7bd58d02fc7e880af776d5
Base64:
5aSH