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