C:
char c = '\u7584';
printf("%c\n", c); // Output: 疄
JavaScript:
const char = '\u7584';
console.log(char); // Output: 疄
Java:
char c = '\u7584';
System.out.println(c); // Output: 疄
JSON:
{"text": "\u7584"} // Value: 疄
Python:
char = '\u7584'
print(char) # Output: 疄
Perl:
my $char = "\x{7584}";
print $char; # Output: 疄
PHP:
$char = "\x{7584}";
echo $char; // Output: 疄
Ruby:
char = "\u{7584}"
puts char # Output: 疄
Rust:
let c = '\u{7584}';
println!("{}", c); // Output: 疄
Go:
char := '\u7584'
fmt.Printf("%c\n", char) // Output: 疄
CSS:
/* CSS content property */
.element::before {
content: "\007584"; /* 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%96%84
MD5:
adf678f01570ae22d1a7a7d9c4c5f24b
SHA1:
4e629f781711f86702c32281d6847816c2deb4d7
Base64:
55aE