C:
char c = '\u7247';
printf("%c\n", c); // Output: 片
JavaScript:
const char = '\u7247';
console.log(char); // Output: 片
Java:
char c = '\u7247';
System.out.println(c); // Output: 片
JSON:
{"text": "\u7247"} // Value: 片
Python:
char = '\u7247'
print(char) # Output: 片
Perl:
my $char = "\x{7247}";
print $char; # Output: 片
PHP:
$char = "\x{7247}";
echo $char; // Output: 片
Ruby:
char = "\u{7247}"
puts char # Output: 片
Rust:
let c = '\u{7247}';
println!("{}", c); // Output: 片
Go:
char := '\u7247'
fmt.Printf("%c\n", char) // Output: 片
CSS:
/* CSS content property */
.element::before {
content: "\007247"; /* 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=%E7%89%87
MD5:
b26fc74c5735d58c82ebc97ca1a40e63
SHA1:
8f603fb51d3bac8c36f86c6b38ee0dc3fab6f97a
Base64:
54mH