C:
char c = '\u8D4F';
printf("%c\n", c); // Output: 赏
JavaScript:
const char = '\u8D4F';
console.log(char); // Output: 赏
Java:
char c = '\u8D4F';
System.out.println(c); // Output: 赏
JSON:
{"text": "\u8D4F"} // Value: 赏
Python:
char = '\u8D4F'
print(char) # Output: 赏
Perl:
my $char = "\x{8D4F}";
print $char; # Output: 赏
PHP:
$char = "\x{8D4F}";
echo $char; // Output: 赏
Ruby:
char = "\u{8D4F}"
puts char # Output: 赏
Rust:
let c = '\u{8D4F}';
println!("{}", c); // Output: 赏
Go:
char := '\u8D4F'
fmt.Printf("%c\n", char) // Output: 赏
CSS:
/* CSS content property */
.element::before {
content: "\008D4F"; /* 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=%E8%B5%8F
MD5:
36d698d44133afdf0bf7881a4037a00f
SHA1:
e6c2c31357df6a442147905f3fe2eb8e565e8a8d
Base64:
6LWP