C:
char c = '\u7CB1';
printf("%c\n", c); // Output: 粱
JavaScript:
const char = '\u7CB1';
console.log(char); // Output: 粱
Java:
char c = '\u7CB1';
System.out.println(c); // Output: 粱
JSON:
{"text": "\u7CB1"} // Value: 粱
Python:
char = '\u7CB1'
print(char) # Output: 粱
Perl:
my $char = "\x{7CB1}";
print $char; # Output: 粱
PHP:
$char = "\x{7CB1}";
echo $char; // Output: 粱
Ruby:
char = "\u{7CB1}"
puts char # Output: 粱
Rust:
let c = '\u{7CB1}';
println!("{}", c); // Output: 粱
Go:
char := '\u7CB1'
fmt.Printf("%c\n", char) // Output: 粱
CSS:
/* CSS content property */
.element::before {
content: "\007CB1"; /* 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%B2%B1
MD5:
0a57eba01b5f092d7c1c64913b7f3765
SHA1:
6c032109e006def1be5b3523a12821de32082c46
Base64:
57Kx