C:
char c = '\u5151';
printf("%c\n", c); // Output: 兑
JavaScript:
const char = '\u5151';
console.log(char); // Output: 兑
Java:
char c = '\u5151';
System.out.println(c); // Output: 兑
JSON:
{"text": "\u5151"} // Value: 兑
Python:
char = '\u5151'
print(char) # Output: 兑
Perl:
my $char = "\x{5151}";
print $char; # Output: 兑
PHP:
$char = "\x{5151}";
echo $char; // Output: 兑
Ruby:
char = "\u{5151}"
puts char # Output: 兑
Rust:
let c = '\u{5151}';
println!("{}", c); // Output: 兑
Go:
char := '\u5151'
fmt.Printf("%c\n", char) // Output: 兑
CSS:
/* CSS content property */
.element::before {
content: "\005151"; /* 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%85%91
MD5:
2f3863e8a64224887d2f9cdb66de1003
SHA1:
f31507d3c68909ee40a440a3c4d7b91ee9b43320
Base64:
5YWR