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