C:
char c = '\u7545';
printf("%c\n", c); // Output: 畅
JavaScript:
const char = '\u7545';
console.log(char); // Output: 畅
Java:
char c = '\u7545';
System.out.println(c); // Output: 畅
JSON:
{"text": "\u7545"} // Value: 畅
Python:
char = '\u7545'
print(char) # Output: 畅
Perl:
my $char = "\x{7545}";
print $char; # Output: 畅
PHP:
$char = "\x{7545}";
echo $char; // Output: 畅
Ruby:
char = "\u{7545}"
puts char # Output: 畅
Rust:
let c = '\u{7545}';
println!("{}", c); // Output: 畅
Go:
char := '\u7545'
fmt.Printf("%c\n", char) // Output: 畅
CSS:
/* CSS content property */
.element::before {
content: "\007545"; /* 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%95%85
MD5:
f8f6e8045daf1cefc22a27b6685e936c
SHA1:
40a29a5704e11934bc44eb7d07fa65c606d3b3df
Base64:
55WF