C:
char c = '\u63E3';
printf("%c\n", c); // Output: 揣
JavaScript:
const char = '\u63E3';
console.log(char); // Output: 揣
Java:
char c = '\u63E3';
System.out.println(c); // Output: 揣
JSON:
{"text": "\u63E3"} // Value: 揣
Python:
char = '\u63E3'
print(char) # Output: 揣
Perl:
my $char = "\x{63E3}";
print $char; # Output: 揣
PHP:
$char = "\x{63E3}";
echo $char; // Output: 揣
Ruby:
char = "\u{63E3}"
puts char # Output: 揣
Rust:
let c = '\u{63E3}';
println!("{}", c); // Output: 揣
Go:
char := '\u63E3'
fmt.Printf("%c\n", char) // Output: 揣
CSS:
/* CSS content property */
.element::before {
content: "\0063E3"; /* 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%A3
MD5:
071b060a082f5674585c76fb858028f8
SHA1:
45d7699937b4836d7fe5504d4609bfe003bd263b
Base64:
5o+j