C:
char c = '\u7591';
printf("%c\n", c); // Output: 疑
JavaScript:
const char = '\u7591';
console.log(char); // Output: 疑
Java:
char c = '\u7591';
System.out.println(c); // Output: 疑
JSON:
{"text": "\u7591"} // Value: 疑
Python:
char = '\u7591'
print(char) # Output: 疑
Perl:
my $char = "\x{7591}";
print $char; # Output: 疑
PHP:
$char = "\x{7591}";
echo $char; // Output: 疑
Ruby:
char = "\u{7591}"
puts char # Output: 疑
Rust:
let c = '\u{7591}';
println!("{}", c); // Output: 疑
Go:
char := '\u7591'
fmt.Printf("%c\n", char) // Output: 疑
CSS:
/* CSS content property */
.element::before {
content: "\007591"; /* 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%91
MD5:
67713d8448ae6183fbf87144aef0ce39
SHA1:
64e78c774c1d248eb8903f0c10750b1ebaa159e0
Base64:
55aR