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