C:
char c = '\u53CF';
printf("%c\n", c); // Output: 叏
JavaScript:
const char = '\u53CF';
console.log(char); // Output: 叏
Java:
char c = '\u53CF';
System.out.println(c); // Output: 叏
JSON:
{"text": "\u53CF"} // Value: 叏
Python:
char = '\u53CF'
print(char) # Output: 叏
Perl:
my $char = "\x{53CF}";
print $char; # Output: 叏
PHP:
$char = "\x{53CF}";
echo $char; // Output: 叏
Ruby:
char = "\u{53CF}"
puts char # Output: 叏
Rust:
let c = '\u{53CF}';
println!("{}", c); // Output: 叏
Go:
char := '\u53CF'
fmt.Printf("%c\n", char) // Output: 叏
CSS:
/* CSS content property */
.element::before {
content: "\0053CF"; /* 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=%E5%8F%8F
MD5:
2bf91ef7d8803dd9b43143a52481f97b
SHA1:
a4e04a4545eb6ea886de0f2cd89fd5f7ac28f713
Base64:
5Y+P