C:
char c = '\u6147';
printf("%c\n", c); // Output: 慇
JavaScript:
const char = '\u6147';
console.log(char); // Output: 慇
Java:
char c = '\u6147';
System.out.println(c); // Output: 慇
JSON:
{"text": "\u6147"} // Value: 慇
Python:
char = '\u6147'
print(char) # Output: 慇
Perl:
my $char = "\x{6147}";
print $char; # Output: 慇
PHP:
$char = "\x{6147}";
echo $char; // Output: 慇
Ruby:
char = "\u{6147}"
puts char # Output: 慇
Rust:
let c = '\u{6147}';
println!("{}", c); // Output: 慇
Go:
char := '\u6147'
fmt.Printf("%c\n", char) // Output: 慇
CSS:
/* CSS content property */
.element::before {
content: "\006147"; /* 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%87
MD5:
be10012471fa03fd9eb210be5b0f2a76
SHA1:
6ac6884a18ca5fd7908b0241cd538fc5cf0e7f9a
Base64:
5oWH