C:
char c = '\u6144';
printf("%c\n", c); // Output: 慄
JavaScript:
const char = '\u6144';
console.log(char); // Output: 慄
Java:
char c = '\u6144';
System.out.println(c); // Output: 慄
JSON:
{"text": "\u6144"} // Value: 慄
Python:
char = '\u6144'
print(char) # Output: 慄
Perl:
my $char = "\x{6144}";
print $char; # Output: 慄
PHP:
$char = "\x{6144}";
echo $char; // Output: 慄
Ruby:
char = "\u{6144}"
puts char # Output: 慄
Rust:
let c = '\u{6144}';
println!("{}", c); // Output: 慄
Go:
char := '\u6144'
fmt.Printf("%c\n", char) // Output: 慄
CSS:
/* CSS content property */
.element::before {
content: "\006144"; /* 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=%E6%85%84
MD5:
d5a4fa66920c3181a06fd3eb1772142d
SHA1:
b5adbbbaab735f7695764deb29b5d3c18b3a9d82
Base64:
5oWE