C:
char c = '\u6054';
printf("%c\n", c); // Output: 恔
JavaScript:
const char = '\u6054';
console.log(char); // Output: 恔
Java:
char c = '\u6054';
System.out.println(c); // Output: 恔
JSON:
{"text": "\u6054"} // Value: 恔
Python:
char = '\u6054'
print(char) # Output: 恔
Perl:
my $char = "\x{6054}";
print $char; # Output: 恔
PHP:
$char = "\x{6054}";
echo $char; // Output: 恔
Ruby:
char = "\u{6054}"
puts char # Output: 恔
Rust:
let c = '\u{6054}';
println!("{}", c); // Output: 恔
Go:
char := '\u6054'
fmt.Printf("%c\n", char) // Output: 恔
CSS:
/* CSS content property */
.element::before {
content: "\006054"; /* 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%81%94
MD5:
fa0351c5193cefab1f902b4dd86df3b3
SHA1:
f3c604521e9b0228d9a2124eba6c0cd41d1b399c
Base64:
5oGU