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