C:
char c = '\u63C9';
printf("%c\n", c); // Output: 揉
JavaScript:
const char = '\u63C9';
console.log(char); // Output: 揉
Java:
char c = '\u63C9';
System.out.println(c); // Output: 揉
JSON:
{"text": "\u63C9"} // Value: 揉
Python:
char = '\u63C9'
print(char) # Output: 揉
Perl:
my $char = "\x{63C9}";
print $char; # Output: 揉
PHP:
$char = "\x{63C9}";
echo $char; // Output: 揉
Ruby:
char = "\u{63C9}"
puts char # Output: 揉
Rust:
let c = '\u{63C9}';
println!("{}", c); // Output: 揉
Go:
char := '\u63C9'
fmt.Printf("%c\n", char) // Output: 揉
CSS:
/* CSS content property */
.element::before {
content: "\0063C9"; /* 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=%E6%8F%89
MD5:
ffbad2411a3ea627cb7bef9973a3f133
SHA1:
8c7720abdbd7f84ea6c7d7b2b1ffd5285ae0eba1
Base64:
5o+J