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