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