C:
char c = '\u7590';
printf("%c\n", c); // Output: 疐
JavaScript:
const char = '\u7590';
console.log(char); // Output: 疐
Java:
char c = '\u7590';
System.out.println(c); // Output: 疐
JSON:
{"text": "\u7590"} // Value: 疐
Python:
char = '\u7590'
print(char) # Output: 疐
Perl:
my $char = "\x{7590}";
print $char; # Output: 疐
PHP:
$char = "\x{7590}";
echo $char; // Output: 疐
Ruby:
char = "\u{7590}"
puts char # Output: 疐
Rust:
let c = '\u{7590}';
println!("{}", c); // Output: 疐
Go:
char := '\u7590'
fmt.Printf("%c\n", char) // Output: 疐
CSS:
/* CSS content property */
.element::before {
content: "\007590"; /* 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%90
MD5:
ba4a2eaf9a38be13c7fa30481d6f4d80
SHA1:
fdde90e288beffe0679aa403541bba5eb1da6a36
Base64:
55aQ