C:
char c = '\u5917';
printf("%c\n", c); // Output: 夗
JavaScript:
const char = '\u5917';
console.log(char); // Output: 夗
Java:
char c = '\u5917';
System.out.println(c); // Output: 夗
JSON:
{"text": "\u5917"} // Value: 夗
Python:
char = '\u5917'
print(char) # Output: 夗
Perl:
my $char = "\x{5917}";
print $char; # Output: 夗
PHP:
$char = "\x{5917}";
echo $char; // Output: 夗
Ruby:
char = "\u{5917}"
puts char # Output: 夗
Rust:
let c = '\u{5917}';
println!("{}", c); // Output: 夗
Go:
char := '\u5917'
fmt.Printf("%c\n", char) // Output: 夗
CSS:
/* CSS content property */
.element::before {
content: "\005917"; /* 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%A4%97
MD5:
b10e505e1a329e78f3a14fe44f97d406
SHA1:
3c09a60a109ab3ab2a6cd452066973d80cb68e9f
Base64:
5aSX