C:
char c = '\u5BD2';
printf("%c\n", c); // Output: 寒
JavaScript:
const char = '\u5BD2';
console.log(char); // Output: 寒
Java:
char c = '\u5BD2';
System.out.println(c); // Output: 寒
JSON:
{"text": "\u5BD2"} // Value: 寒
Python:
char = '\u5BD2'
print(char) # Output: 寒
Perl:
my $char = "\x{5BD2}";
print $char; # Output: 寒
PHP:
$char = "\x{5BD2}";
echo $char; // Output: 寒
Ruby:
char = "\u{5BD2}"
puts char # Output: 寒
Rust:
let c = '\u{5BD2}';
println!("{}", c); // Output: 寒
Go:
char := '\u5BD2'
fmt.Printf("%c\n", char) // Output: 寒
CSS:
/* CSS content property */
.element::before {
content: "\005BD2"; /* 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=%E5%AF%92
MD5:
3a99e9068db60d138590aca5b57e64b6
SHA1:
2d4f5882b000d06add60e2160beb13a66ccfcb5b
Base64:
5a+S