C:
char c = '\u7645';
printf("%c\n", c); // Output: 癅
JavaScript:
const char = '\u7645';
console.log(char); // Output: 癅
Java:
char c = '\u7645';
System.out.println(c); // Output: 癅
JSON:
{"text": "\u7645"} // Value: 癅
Python:
char = '\u7645'
print(char) # Output: 癅
Perl:
my $char = "\x{7645}";
print $char; # Output: 癅
PHP:
$char = "\x{7645}";
echo $char; // Output: 癅
Ruby:
char = "\u{7645}"
puts char # Output: 癅
Rust:
let c = '\u{7645}';
println!("{}", c); // Output: 癅
Go:
char := '\u7645'
fmt.Printf("%c\n", char) // Output: 癅
CSS:
/* CSS content property */
.element::before {
content: "\007645"; /* 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=%E7%99%85
MD5:
673862f3175f0b2031309b7361fd9d3d
SHA1:
8ca6f1f4aa8ca3728775bb4d69d4f5fc88f3ef41
Base64:
55mF