C:
char c = '\u7588';
printf("%c\n", c); // Output: 疈
JavaScript:
const char = '\u7588';
console.log(char); // Output: 疈
Java:
char c = '\u7588';
System.out.println(c); // Output: 疈
JSON:
{"text": "\u7588"} // Value: 疈
Python:
char = '\u7588'
print(char) # Output: 疈
Perl:
my $char = "\x{7588}";
print $char; # Output: 疈
PHP:
$char = "\x{7588}";
echo $char; // Output: 疈
Ruby:
char = "\u{7588}"
puts char # Output: 疈
Rust:
let c = '\u{7588}';
println!("{}", c); // Output: 疈
Go:
char := '\u7588'
fmt.Printf("%c\n", char) // Output: 疈
CSS:
/* CSS content property */
.element::before {
content: "\007588"; /* 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%88
MD5:
b7be006ff324e570985a74b93bf30234
SHA1:
3745f0d31767f4bf5cae48b2e41ed2fa9047401e
Base64:
55aI