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