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