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