C:
char c = '\u7598';
printf("%c\n", c); // Output: 疘
JavaScript:
const char = '\u7598';
console.log(char); // Output: 疘
Java:
char c = '\u7598';
System.out.println(c); // Output: 疘
JSON:
{"text": "\u7598"} // Value: 疘
Python:
char = '\u7598'
print(char) # Output: 疘
Perl:
my $char = "\x{7598}";
print $char; # Output: 疘
PHP:
$char = "\x{7598}";
echo $char; // Output: 疘
Ruby:
char = "\u{7598}"
puts char # Output: 疘
Rust:
let c = '\u{7598}';
println!("{}", c); // Output: 疘
Go:
char := '\u7598'
fmt.Printf("%c\n", char) // Output: 疘
CSS:
/* CSS content property */
.element::before {
content: "\007598"; /* 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%98
MD5:
fbe68085648e41c4aac20674bf3c5a43
SHA1:
84448ca73c8b9e17a5829e69331dc446ec5d313b
Base64:
55aY