C:
char c = '\u8CDE';
printf("%c\n", c); // Output: 賞
JavaScript:
const char = '\u8CDE';
console.log(char); // Output: 賞
Java:
char c = '\u8CDE';
System.out.println(c); // Output: 賞
JSON:
{"text": "\u8CDE"} // Value: 賞
Python:
char = '\u8CDE'
print(char) # Output: 賞
Perl:
my $char = "\x{8CDE}";
print $char; # Output: 賞
PHP:
$char = "\x{8CDE}";
echo $char; // Output: 賞
Ruby:
char = "\u{8CDE}"
puts char # Output: 賞
Rust:
let c = '\u{8CDE}';
println!("{}", c); // Output: 賞
Go:
char := '\u8CDE'
fmt.Printf("%c\n", char) // Output: 賞
CSS:
/* CSS content property */
.element::before {
content: "\008CDE"; /* 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%B3%9E
MD5:
8b60b59dc5d93b8963f37249393b7e14
SHA1:
be9eae2ba7bc51542625d7827fe68a5326e9eacb
Base64:
6LOe