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