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